Files
c3c/resources/testfragments/helloworld.c3

8 lines
112 B
Plaintext

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