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