From b1e6e75b572870edbaf2246ea94a920047547605 Mon Sep 17 00:00:00 2001 From: "Dongyoon Kim(oss006)" <kenny122@ajou.ac.kr> Date: Thu, 24 Sep 2020 11:46:46 +0900 Subject: [PATCH] hello --- .gitignore | 1 + hello/.gitignore | 1 + hello/main.c | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 hello/.gitignore create mode 100644 hello/main.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f47cb20 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.out diff --git a/hello/.gitignore b/hello/.gitignore new file mode 100644 index 0000000..f47cb20 --- /dev/null +++ b/hello/.gitignore @@ -0,0 +1 @@ +*.out diff --git a/hello/main.c b/hello/main.c new file mode 100644 index 0000000..c6d446e --- /dev/null +++ b/hello/main.c @@ -0,0 +1,6 @@ +#include<stdio.h> + +int main(){ + printf("Hello World! I am in git!\n"); + return 0; +} -- GitLab