Files
c3c/resources/testproject/hello_world.c3

11 lines
157 B
C

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