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

5 lines
96 B
Text

class Hello {
function : Main(args : String[]) ~ Nil {
"Hello world!"->PrintLine();
}
}