This commit is contained in:
Valk Richard Li
2019-08-23 18:11:13 +08:00
committed by GitHub
parent 7042f68251
commit fa284f544c
+12
View File
@@ -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><(> <...> <)> <{> <...> <}>