Header

The purpose of the header is to create an environment that will contain the new bindings. The exact code will be set later on, inside a |let|, so that local objects common to all routines can be defined.

(begin (define @write) (define @display) (define @newline) (define @write-char)

(define @read) (define @read-atom) (define @eof-object?) (define @char-ready?) (define @peek-char) (define @read-char) (define @read-line) (define @unread-char)

(define @number->string) (define @integer->string) )