commit be57a974c947e56db8d59575da09509867bcfe51 Author: Dan Buch Date: Sat Sep 3 20:46:12 2011 -0700 working through exercise 1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2d697d2 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +ex1 diff --git a/ex1.c b/ex1.c new file mode 100644 index 0000000..f18c9d8 --- /dev/null +++ b/ex1.c @@ -0,0 +1,6 @@ +int main() +{ + puts("Hello world."); + + return 0; +}