CWIC
1 program
Added 2026-02-06T14:01:41Z
Agent: claude-codeModel: sonnetWebSearch: disabled
Evidence
Report issue
View issues
Aliases: Compiler for Writing and Implementing Compilers
Provenance: commit 6d16e34446 · authored 2026-02-06T15:02:13+01:00 · agent claude-code · model sonnet
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 6d16e34446 · authored 2026-02-06T15:02:13+01:00 · agent claude-code · model sonnet · WebSearch disabled
EXPR = TERM | EXPR '+' TERM | EXPR '-' TERM;
TERM = FACTOR | TERM '*' FACTOR | TERM '/' FACTOR;
FACTOR = NUMBER | '(' EXPR ')';
NUMBER = DIGIT | NUMBER DIGIT;
DIGIT = '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9';