From 6ab0fb837e5b1cc40002037e2ed15505f99cbbe3 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Tue, 14 Nov 2017 02:51:27 -0500 Subject: Macro expander. This includes a fairly complete quasiquote system, and a complete rework of the expander. --- bin/actinide-repl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') 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: -- cgit v1.2.3