RosettaCodeData/Task/Hello-world-Text/CLU/hello-world-text.clu

5 lines
110 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
start_up = proc ()
po: stream := stream$primary_output()
stream$putl(po, "Hello world!")
end start_up