boot2

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

39-eof.scm (171B)


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