6 lines
116 B
Text
6 lines
116 B
Text
class Prepend {
|
|
function : Main(args : String[]) ~ Nil {
|
|
s := "world!";
|
|
"Hello {$s}"->PrintLine();
|
|
}
|
|
}
|