Make-String

(make-string) -> string
(make-string integer) -> string

Creates a new string (of integer size in bytes, if integer is given). Note that if an overflow occurs, the string will resize itself accordingly.

Example:

>> (make-string)
:: ""