read-char -- r7rs Definition procedure;
Procedure variants:
(() -> (character-or-eof))
character-or-eof;((textual-input-port-eof) -> (eof-object))
textual-input-port-eof;eof-object;((textual-input-port-open) -> (character-or-eof))
textual-input-port-open;character-or-eof;scheme:base -- (scheme base);scheme -- (scheme);(read-char) (read-char port)Returns the next character available from the textual input
port, updating theportto point to the following character. If no more characters are available, an end-of-file object is returned.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.