mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
module hello_world;
|
|
import bar;
|
|
|
|
extern func void printf(char *hello);
|
|
|
|
func int main(int x)
|
|
{
|
|
printf("Hello World!\n");
|
|
bar::test();
|
|
return 1;
|
|
} |