working through exercise 1

This commit is contained in:
Dan Buch 2011-09-03 20:46:12 -07:00
commit be57a974c9
2 changed files with 7 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
ex1

6
ex1.c Normal file
View File

@ -0,0 +1,6 @@
int main()
{
puts("Hello world.");
return 0;
}