From: matchesucc Date: Sun, 4 Aug 2013 04:58:51 +0000 (+0800) Subject: Create helloworld.c X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=61f45020e5506d9e1ca664aed5d586fd49215cd8;p=matches%2FMCTX3420.git Create helloworld.c Testing editing in github --- diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..86dcb09 --- /dev/null +++ b/helloworld.c @@ -0,0 +1,8 @@ +#include +#include + +int main(int argc, char ** argv) +{ + printf("Hello, world!\n"); + return 0; +}