boot2

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

163-cond-unreachable-else.scm (109B)


      1 ; A non-final else is invalid even when an earlier clause would succeed.
      2 (cond
      3   (#t 1)
      4   (else 2)
      5   (#f 3))