RosettaCodeData/Task/Hello-world-Text/PHL/hello-world-text.phl

8 lines
95 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
module helloworld;
extern printf;
@Integer main [
printf("Hello world!");
return 0;
]