I'm having a bit of an issue taking a text file and converting it into a list or string.
Say I have "blah.txt" which holds:
3 + 4
Now I want to call that file which I know can be done by
(define in (open-input-file "blah.txt"))
Where do I take it from here?