objeck / objeck-lang

Objeck is a modern object-oriented programming language with functional features tailored for machine learning. It emphasizes expression, simplicity, portability, and scalability. The programming environment consists of a compiler, virtual machine, REPL shell, and command line debugger with IDE plugins.
https://objeck.org
Other
154 stars 11 forks source link

Add `StringBuilder` class #471

Closed ghost closed 7 months ago

ghost commented 7 months ago

Objeck's String class has the same limitation as C# and Java: it creates an immutable sequence of characters.

https://github.com/objeck/objeck-lang/issues/263

I think Objeck needs a StringBuilder class just like C# and Java.

objeck commented 7 months ago

I do not plan to create another String class. One of the original design goals is to reduce complexity.