Files
retrobsd/share/example/chello.c
2015-03-21 14:08:32 -07:00

8 lines
77 B
C

#include <stdio.h>
int main()
{
printf ("Hello, C World!\n");
return 0;
}