boot2

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

012-variadic-rest.scm (163B)


      1 ; Lambda with .-tail rest-arg. The fixed arg `a` must still bind
      2 ; correctly when the rest absorbs additional args.
      3 ((lambda (a . xs) (sys-exit a)) 19 99 100 101)