somake/example/helloworld.c

8 lines
92 B
C
Raw Normal View History

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