boot2

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

014-empty-rest.scm (94B)


      1 ; Variadic with zero rest args: xs binds to ().
      2 (define (head a . xs) a)
      3 (sys-exit (head 41))