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)