(scheme read)
Exports
readprocedureRead one S-expression from a port.
Parses and returns the next complete Scheme value. Returns the end-of-file object when the port is exhausted.
;; File contains: (1 2 3) "hello"
(read port) ; => (1 2 3)
(read port) ; => "hello"
(read port) ; => #<eof>
(eof-object? (read port)) ; => #tRe-exported from (sigil io)