I would like to read the entire string into a list, but not evaluate it. wtf? is the function or mix of functions which I can not find to do this.
user=> (wtf? " S I I ( S I I)")
(S I I (S I I))
The function should also work as:
user=> (last (wtf? " S I I ( S I I)"))
(S I I)
read-string returns only the first object, while load-string returns them all, but tries to evaluate them.