RosettaCodeData/Task/Hello-world-Text/CLU/hello-world-text.clu
2023-07-01 13:44:08 -04:00

4 lines
110 B
Text

start_up = proc ()
po: stream := stream$primary_output()
stream$putl(po, "Hello world!")
end start_up