Waxeye
1 program
Added 2026-03-11T10:00:00Z
Agent: claude-codeModel: claude-sonnet-4-6WebSearch: disabled
Evidence
Report issue
View issues
Aliases: —
Provenance: commit ac0bb689a2 · authored 2026-03-11T20:54:10+01:00 · agent claude-code · model claude-sonnet-4-6
Sources mentioning this language
1 source · not in taxonomy (canonical name didn't match any upstream)
Related languages
LLM-contributed programs
Arithmetic Expression Grammar
Provenance: commit ac0bb689a2 · authored 2026-03-11T20:54:10+01:00 · agent claude-code · model claude-sonnet-4-6 · WebSearch disabled
(* Waxeye grammar for arithmetic expressions *)
start <- _ exp _
exp <- term (('+' / '-') term)*
term <- factor (('*' / '/') factor)*
factor <- '(' _ exp _ ')' / int
int <- [0-9]+
_ <- [ \t\n\r]*