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

8 lines
95 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
module helloworld;
extern printf;
@Integer main [
printf("Hello world!");
return 0;
]