Add optional semicolon at the end of statements and move loop parser from factor to expression (change precedence)

This commit is contained in:
Bartłomiej Pluta
2019-07-15 20:17:40 +02:00
parent 2737139962
commit 79a7b8bb1d
7 changed files with 90 additions and 67 deletions

View File

@@ -1,4 +1,4 @@
from smnp.module.iterable.function import combine, map, range, get
from smnp.module.iterable.function import combine, map, get
functions = [ combine.function, map.function, range.function ]
functions = [ combine.function, map.function ]
methods = [ get.function ]