I want to read input from STDIN and just read what it is: if input is a list, then what is read is a list. However, the read-line function always returns a string! For example: in interactive mode:
(read-line)
I enter:
("(define M ::int )" "(define X ::int )")
This will return me the line:
"(\"(define M ::int )\" \"(define X ::int )\")" ;
I want the source list still to be: ("(define M ::int )" "(define X ::int )")
So, how to make reading read in what kind of entry?
user618815
source share