nil is returned.
If the end of stream is reached before any characters can be read nil
is returned, if the end of stream is reached but some characters have
been read (but not the newline) these characters are made into a string
and returned.
Note that unlike the Common Lisp function of the same name, the newline character is not removed from the returned string.
(read-from-string string start) == (read (make-string-input-stream string start))
Go to the first, previous, next, last section, table of contents.