7 lines
95 B
Text
7 lines
95 B
Text
module helloworld;
|
|
extern printf;
|
|
|
|
@Integer main [
|
|
printf("Hello world!");
|
|
return 0;
|
|
]
|