boot2

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

013-define-variadic.scm (112B)


      1 ; `(define (f . xs) ...)` sugar. xs binds to the args list.
      2 (define (head a . xs) a)
      3 (sys-exit (head 23 1 2 3))