box-o-sand/lcthw-remnants/ex1.c

14 lines
237 B
C
Raw Normal View History

#include <stdio.h>
2011-09-04 03:46:12 +00:00
int main()
{
puts("Hello world.");
2011-09-04 03:50:44 +00:00
puts("Hello man.");
puts("Hello to you.");
puts("Hello woman.");
puts("Hello to the world of learning C the hard way, mkay?");
puts("yup.");
2011-09-04 03:46:12 +00:00
return 0;
}