boot2

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

010-define-fn.scm (105B)


      1 ; define-fn sugar: (define (f x y) body).
      2 (define (id x) x)
      3 (define (k x y) x)
      4 (sys-exit (id (k 55 99)))