String->exprs

(string->exprs "string") -> expression

Parses the given string into an S-expression. Does NOT evaluate.

Example:

>>(string->exprs "+ 1 1")
:: (+ 1 1)