From 32848ee5c9b8b1aea05f9bcb6b19d290603fda2b Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 9 Dec 2016 23:58:42 -0500 Subject: [PATCH] Cleanup, get this to compile again --- tests/debug/compiler-int-dev.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/debug/compiler-int-dev.scm b/tests/debug/compiler-int-dev.scm index bc856785..d64e05db 100644 --- a/tests/debug/compiler-int-dev.scm +++ b/tests/debug/compiler-int-dev.scm @@ -1,3 +1,4 @@ +(import (scheme base) (scheme write) (scheme eval)) ;; This is a temporary test file, move everything to a test suite and/or docs once it works! ; @@ -85,7 +86,7 @@ ;((lambda (tmp) ; (write (eval 'tmp))) #f) (write (list 'after-eval 'x x 'y y '*z* *z*)) -x ;; oh shit, need to reference x/y otherwise they get optimized out! +;x ;; oh shit, need to reference x/y otherwise they get optimized out! ;; case #2 - pass a local (IE, lambda var) ;; No, this is not allowed, see: http://stackoverflow.com/questions/3844196/how-can-i-use-external-variables-in-eval-in-scheme/3851284#3851284