8 lines
122 B
Text
8 lines
122 B
Text
|
|
class Append {
|
||
|
|
function : Main(args : String[]) ~ Nil {
|
||
|
|
x := "foo";
|
||
|
|
x->Append("bar");
|
||
|
|
x->PrintLine();
|
||
|
|
}
|
||
|
|
}
|