From 8f4bbc2f51ac9ae88a4a25bc1f3ee4f085576d25 Mon Sep 17 00:00:00 2001 From: Anas Abognah Date: Wed, 30 Sep 2015 12:27:35 -0400 Subject: [PATCH 1/4] added helloworld.c main file --- helloworld.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 helloworld.c diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 00000000..773ef97d --- /dev/null +++ b/helloworld.c @@ -0,0 +1,10 @@ +#include stdio.h + +int main() { + +stdout >> "Hello World" >> \n ; + +return 0; + +} + From fdf4a9e448322a0224e5273a9fca7fcde14603c7 Mon Sep 17 00:00:00 2001 From: Anas Abognah Date: Wed, 30 Sep 2015 12:33:52 -0400 Subject: [PATCH 2/4] edited helloworld.c (not compiled yet, may contain errors --- helloworld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloworld.c b/helloworld.c index 773ef97d..63759f5b 100644 --- a/helloworld.c +++ b/helloworld.c @@ -2,7 +2,7 @@ int main() { -stdout >> "Hello World" >> \n ; +stdout >> "Hello World\n" ; return 0; From 6b61f050188c5667bc0b8ff6ad215af1ee04c206 Mon Sep 17 00:00:00 2001 From: Anas Abognah Date: Wed, 30 Sep 2015 13:36:43 -0400 Subject: [PATCH 3/4] fixed include statement. not yet compiled --- helloworld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloworld.c b/helloworld.c index 63759f5b..930940c3 100644 --- a/helloworld.c +++ b/helloworld.c @@ -1,4 +1,4 @@ -#include stdio.h +#include int main() { From e0c36162657bbd24bcb7dea6945d05c6e1da6db5 Mon Sep 17 00:00:00 2001 From: Anas Abognah Date: Wed, 30 Sep 2015 13:59:41 -0400 Subject: [PATCH 4/4] added another comment line (I think) --- helloworld.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helloworld.c b/helloworld.c index 930940c3..ae2fffb5 100644 --- a/helloworld.c +++ b/helloworld.c @@ -2,8 +2,10 @@ int main() { +//this is a comment stdout >> "Hello World\n" ; +// asecond comment return 0; }