Files
c3c/resources/testfragments/helloworld.c3
2021-11-16 17:46:44 +01:00

8 lines
108 B
C

module helloworld;
extern fn void printf(char *str, ...);
fn void main()
{
printf("Hello World!\n");
}