Skip to content
This repository was archived by the owner on Jan 23, 2020. It is now read-only.

Commit eeaffc8

Browse files
committed
Initial commit
0 parents  commit eeaffc8

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/.idea
2+
/cmake-build-debug
3+
CMakeLists.txt
4+
main.o

main.c

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#include <stdio.h>
2+
3+
int main(){
4+
printf("Hello, World!\n");
5+
return 0;
6+
}

0 commit comments

Comments
 (0)