boot2

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

023-cons-car-cdr.scm (99B)


      1 ; cons + car/cdr round-trip plus arithmetic.
      2 (define p (cons 7 11))
      3 (sys-exit (+ (car p) (cdr p)))