RosettaCodeData/Task/String-append/Objeck/string-append.objeck
2023-07-01 13:44:08 -04:00

7 lines
122 B
Text

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