boot2

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

133-record-ctor-arity.scm (100B)


      1 (define-record-type <point>
      2   (make-point x y)
      3   point?
      4   (x point-x)
      5   (y point-y))
      6 (make-point 1)