boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

039-eof.scm (129B)


      1 ; eof is the EOF singleton; eof? distinguishes it.
      2 (sys-exit (if (eof? eof)
      3               (if (eof? '()) 1 22)
      4               2))