somake/example/hello.c

11 lines
125 B
C
Raw Normal View History

2016-08-21 20:45:54 +00:00
#include <stdio.h>
#include "world.h"
int main(int argc, char **argv)
{
printf("Hello ");
print_world();
return 0;
}