forked from xxq250/Nasal-Interpreter
13 lines
361 B
C++
13 lines
361 B
C++
|
|
<identifier> ::= IDENTIFIER
|
|
<number> ::= NUMBER
|
|
<string> ::= STRING
|
|
<null_list> ::= <[><]>
|
|
<null_hash> ::= <{><}>
|
|
call_func ::= <identifier> <(> <...> <)>
|
|
<list> ::= <[> <...> <]>
|
|
<hash> ::= <{> <...> <}>
|
|
<definition> ::= <var> <identifier> <=> <...> <;>
|
|
<assignment> ::= <identifier> <=> <...> <;>
|
|
<function> ::= <func><(> <...> <)> <{> <...> <}>
|