11 lines
215 B
Text
11 lines
215 B
Text
bundle Default {
|
|
class Repeat {
|
|
function : Main(args : String[]) ~ Nil {
|
|
s := "hello";
|
|
s->PrintLine();
|
|
" literal"->PrintLine();
|
|
s->Append(" literal");
|
|
s->PrintLine();
|
|
}
|
|
}
|
|
}
|