MontysCoconut / moco

The Monty to LLVM compiler
http://www.informatik.uni-bremen.de/monty/
GNU General Public License v3.0
10 stars 5 forks source link

Boxed string implementation #4

Closed lummax closed 9 years ago

lummax commented 9 years ago

Implementation of the String as a boxed Object. This is not the implementation as a Char-Array as generics is not implemented yet.

tindzk commented 9 years ago

Looks good to me. On the long run you will have to consider changing the type of a string, though. NUL-terminated strings are quite limiting. Personally, I would prefer to encode the length in the string as well.