Copy-String

(copy-string string) -> string

Creates a new copy of the given string.

Example:

>> (define a "test")
:: "test"
>> (copy-string a)
:: "test"