main.c initial. Hello world !!!! :)

This commit is contained in:
Georges Dupéron 2010-09-26 00:54:48 +02:00
parent 95152ddccb
commit a65fe34b4c
2 changed files with 7 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
lew
*.o

5
main.c Normal file
View File

@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
printf("hello world\n");
}