git-subtree-dir: lcthw-remnants git-subtree-mainline: 4107485591a9ea2121b65d60d8a08c298451a74b git-subtree-split: e172f73c8297b22a579c94558f0c171ca74a0e5c
14 lines
237 B
C
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;
|
|
}
|