boot2

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

031-bv-fill.scm (134B)


      1 ; 2-arg make-bytevector fills the data area with the given byte.
      2 (define b (make-bytevector 4 42))
      3 (sys-exit (bytevector-u8-ref b 2))