- Fixed `ident` definition
This commit is contained in:
Tristan B. Velloza Kildaire 2023-04-19 10:20:44 +02:00
parent a3b2bc6925
commit c56acee33e
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ statement ::= discard | vdecl;
discard ::= "discard", expr, ";";
ident ::= letter | { letter | number };
ident ::= letter | { letter, number };
vdecl ::= type, identifier, [assign], ";";
type ::= "int" | "uint" | ident | ptrType;
ptrType ::= type, "*";