boot2

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

017-cond-else.scm (111B)


      1 ; `else` is the catch-all; only fires after every prior test was #f.
      2 (sys-exit (cond (#f 1) (#f 2) (else 99)))