www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit a65fe34b4c0a8a922fd5c5450acc3f96d141b450
parent 95152ddccb041c54af9f384ae65489609540d101
Author: Georges Dupéron <jahvascriptmaniac+github@free.fr>
Date:   Sun, 26 Sep 2010 00:54:48 +0200

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

Diffstat:
A.gitignore | 2++
Amain.c | 5+++++
2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1,2 @@ +lew +*.o diff --git a/main.c b/main.c @@ -0,0 +1,5 @@ +#include <stdio.h> + +int main() { + printf("hello world\n"); +}