As titled, If I do
(read-string (slurp "somefile"))
This will only give me the first object in the file, meaning if "somefile" is as below:
(a obj) (b obj)
Then I only get (a obj) as the result.
How do i get a list of all objects, like this?
((a obj) (b obj))
Thanks.
I usually wrap stuff in a list,