boot2

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

22-char.scm (228B)


      1 ;; Step 11c: character literals #\a, #\space, #\newline, #\tab.
      2 (if (= #\a 97)
      3   (if (= #\Z 90)
      4     (if (= #\space 32)
      5       (if (= #\newline 10)
      6         (if (= #\tab 9)
      7           (if (= #\0 48)
      8             42 0) 0) 0) 0) 0) 0)