boot2

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

090-pmatch-no-match.scm (112B)


      1 ; No clause matches and no else -> die with msg_pmatch_no_match.
      2 (pmatch 'nope
      3   ((,h . ,t) 1)
      4   (42        2))