diff --git a/test2.scm b/test2.scm index 950102da..76b42bf9 100644 --- a/test2.scm +++ b/test2.scm @@ -17,7 +17,8 @@ ; BEGIN test code - trying to get definition of with-output-to-file to work (define old (current-output-port)) (define new (current-output-port ' (open-output-file "test.txt"))) +; The next line seems to crash in icyc but not in compiled code (until write, at least). what's going on?? (current-output-port ' new) -(write 'test (current-output-port)) +;(write 'test (current-output-port)) ;(write 'hello-world) ; END test code