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

11 lines
153 B
C

module hello_world;
import bar;
extern fn void printf(char *hello);
fn int main(int x)
{
printf("Hello World!\n");
bar::test();
return 1;
}