RosettaCodeData/Task/Hello-world-Text/Objeck/hello-world-text.objeck
2015-11-18 06:14:39 +00:00

5 lines
96 B
Text

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