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