This repository has been archived on 2024-03-07. You can view files and clone it, but cannot push or open issues/pull-requests.
xmk/doc/grammar.bnf

12 lines
166 B
BNF

MODULE ::= INSTR*
INSTR ::= EXPR semicolon
EXPR ::= LITERAL
LITERAL ::= BUILTIN | ARRAY
BUILTIN ::=
| bool
| float
| int
| string
ARRAY ::= osquare EXPR* csquare