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
Raw Normal View History

2024-03-01 00:38:59 +00:00
MODULE ::= INSTR*
INSTR ::= EXPR semicolon
2024-03-01 17:44:16 +00:00
EXPR ::= LITERAL
LITERAL ::= BUILTIN | ARRAY
2024-03-01 16:06:10 +00:00
BUILTIN ::=
| bool
| float
| int
| string
2024-03-01 17:44:16 +00:00
ARRAY ::= osquare EXPR* csquare