RosettaCodeData/Task/String-append/Objeck/string-append.objeck

8 lines
122 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class Append {
function : Main(args : String[]) ~ Nil {
x := "foo";
x->Append("bar");
x->PrintLine();
}
}