boot2

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

076-bad-int-trailing.scm (231B)


      1 ; A token whose first byte commits it to the integer parse path
      2 ; (digit, or +/- followed by a digit) must consist of only digits
      3 ; after the optional sign. Trailing junk like `+7abc` is a hard error.
      4 (define x +7abc)
      5 (sys-exit 0)