diff options
| -rw-r--r-- | actinide/evaluator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actinide/evaluator.py b/actinide/evaluator.py index fe2e4c2..042f4b0 100644 --- a/actinide/evaluator.py +++ b/actinide/evaluator.py @@ -47,7 +47,7 @@ from . import types as t def run(continuation, environment, args=()): while continuation is not None: continuation, environment, *args = continuation(environment, *args) - return args + return tuple(args) # ## FLAT CONTINUATIONS # |
