boot2

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

127-cond-test-only.scm (193B)


      1 ; A successful one-expression cond clause returns its test value.
      2 (if (= 42 (cond (#f) (42) (else 0))) 0 (sys-exit 1))
      3 (if (eq? 'answer (cond ('answer) (else #f))) 0 (sys-exit 2))
      4 (sys-exit 0)