diff options
| author | mryouse | 2022-05-13 02:35:25 +0000 | 
|---|---|---|
| committer | mryouse | 2022-05-13 02:35:25 +0000 | 
| commit | 3d23b45a0ab381f34a2dae327e22cfa862af46ea (patch) | |
| tree | 104bd1949d60947058b1208169b0372092b0f14c /runner.py | |
| parent | e18bdec21683adfb2658359568a54a2f3f21d703 (diff) | |
lists? not sure if they fully work, but somewhat
Diffstat (limited to 'runner.py')
| -rw-r--r-- | runner.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| @@ -11,7 +11,7 @@ def evaluate(items, pop):      nxt = peek(items)      if nxt is None:          return pop -    elif isinstance(nxt, NebLiteral): +    elif isinstance(nxt, NebLiteral) or isinstance(nxt, NebList):          return evaluate(items[1:], nxt)      elif isinstance(nxt, NebSymbol):          if not nxt.name in STD: | 
