Files
rose-ash/lib/go/scoreboard.md
giles fe614fc531
Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 29s
go: lex.sx — hex/octal/binary integer literals + underscores, +14 tests [consumes-lex]
Adds prefixed integer forms per Go spec § Integer literals:
0x.. / 0X.. (hex), 0b.. / 0B.. (binary), 0o.. / 0O.. (octal),
legacy 0123 octal also accepted. Underscores allowed between digits
in any run; lexer is permissive (parser/types phase can enforce
strict placement).

Dispatch lives in gl-read-number! against the first 1-2 chars;
hex digit run consumes lex-hex-digit? from lib/guest/lex.sx. Octal
and binary use local gl-oct-digit?/gl-bin-digit? — narrow enough
that promoting them to the kit is premature.

lex 92/92.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-27 06:57:47 +00:00

16 lines
310 B
Markdown

# Go-on-SX Scoreboard
**Total: 92 / 92 tests passing**
| | Suite | Pass | Total |
|---|---|---|---|
| ✅ | lex | 92 | 92 |
| ⬜ | parse | 0 | 0 |
| ⬜ | types | 0 | 0 |
| ⬜ | eval | 0 | 0 |
| ⬜ | runtime | 0 | 0 |
| ⬜ | stdlib | 0 | 0 |
| ⬜ | e2e | 0 | 0 |
Generated by `lib/go/conformance.sh`.