boot2

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

055-char-named.scm (264B)


      1 ; Named character forms: #\space #\newline #\tab #\return #\null.
      2 (if (= #\space   32) 0 (sys-exit 1))
      3 (if (= #\newline 10) 0 (sys-exit 2))
      4 (if (= #\tab      9) 0 (sys-exit 3))
      5 (if (= #\return  13) 0 (sys-exit 4))
      6 (if (= #\null     0) 0 (sys-exit 5))
      7 (sys-exit 0)