diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2017-11-14 02:51:27 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2017-11-14 02:51:27 -0500 |
| commit | 6ab0fb837e5b1cc40002037e2ed15505f99cbbe3 (patch) | |
| tree | d7fbc91d82588af74b5f4a931c7ba3344f63ab41 /bin/actinide-repl | |
| parent | 10dad94b84ae0a41b1ff03d6d705732834958efb (diff) | |
Macro expander.
This includes a fairly complete quasiquote system, and a complete rework of the expander.
Diffstat (limited to 'bin/actinide-repl')
| -rwxr-xr-x | bin/actinide-repl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/actinide-repl b/bin/actinide-repl index c4343b6..9b66891 100755 --- a/bin/actinide-repl +++ b/bin/actinide-repl @@ -17,7 +17,7 @@ def repl(session, port): print() return 0 results = session.eval(form) - print(*(at.display(result) for result in results)) + print(*(session.display(result) for result in results)) except Exception as e: print(e) except KeyboardInterrupt: |
