box-o-sand/lcthw-remnants/ex1.c
Dan Buch f2380eef05 Add 'lcthw-remnants/' from commit 'e172f73c8297b22a579c94558f0c171ca74a0e5c'
git-subtree-dir: lcthw-remnants
git-subtree-mainline: 4107485591
git-subtree-split: e172f73c82
2013-01-09 23:42:19 -05:00

14 lines
237 B
C

#include <stdio.h>
int main()
{
puts("Hello world.");
puts("Hello man.");
puts("Hello to you.");
puts("Hello woman.");
puts("Hello to the world of learning C the hard way, mkay?");
puts("yup.");
return 0;
}