ebnf
This commit is contained in:
parent
0e7aceaf84
commit
3115b3973b
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
<identifier> ::= IDENTIFIER
|
||||||
|
<number> ::= NUMBER
|
||||||
|
<string> ::= STRING
|
||||||
|
<null_list> ::= <[><]>
|
||||||
|
<null_hash> ::= <{><}>
|
||||||
|
call_func ::= <identifier> <(> <...> <)>
|
||||||
|
<list> ::= <[> <...> <]>
|
||||||
|
<hash> ::= <{> <...> <}>
|
||||||
|
<definition> ::= <var> <identifier> <=> <...> <;>
|
||||||
|
<assignment> ::= <identifier> <=> <...> <;>
|
||||||
|
<function> ::= <func><(> <...> <)> <{> <...> <}>
|
Loading…
Reference in New Issue