sym
converts a string into a symbol
Usage:
(sym str)
Convert the provided string into a symbol. Both qualified and local symbols are accepted.
An Example
(define hello-sym (sym "hello"))
(eq hello-sym 'hello)
This example will return #t (true).