Files
c3c/resources/testproject/hello_world.c3
Christoffer Lerno f509c85514 Update hello_world
2021-12-29 14:38:47 +01:00

13 lines
233 B
C

module hello_world;
import bar;
extern fn int test_doubler(int);
extern fn void printf(char *, ...);
fn int main()
{
printf("Hello World!\n");
bar::test();
printf("Hello double: %d\n", test_doubler(11));
return 1;
}