Bug fixes

This commit is contained in:
Valk Richard Li
2019-08-24 11:38:22 -05:00
committed by GitHub
parent 473709b60a
commit f60d721d72
5 changed files with 38 additions and 10 deletions
+2
View File
@@ -45,9 +45,11 @@ data type = <scalar> <identifier> <calculation> <list> <hash> <function>
<func> <(> <identifier>|<identifiers> <)> <{> <statement> <}>
<1><definition> ::=
<var> <identifier> <=> <scalar>|<identifier>|<list>|<hash>|<calculation> <;>
<var> <identifier> <=> <(> <scalar>|<identifier>|<list>|<hash>|<calculation> <)> <;>
<var> <identifier> <=> <function>
<1><assigntment> ::=
<!=var> <identifier> <=> <scalar>|<identifier>|<list>|<hash>|<calculation> <;>
<!=var> <identifier> <=> <(> <scalar>|<identifier>|<list>|<hash>|<calculation> <)> <;>
<statement> ::=
<!=<for> <(>> <definition>|<assignment>
<return> <scalar>|<identifier>|<list>|<hash>|<calculation> <;>