Setting stage for debugging issues with param objs

This commit is contained in:
Justin Ethier 2015-06-23 21:36:44 -04:00
parent 5a4cfea75c
commit 5f3b082e27

View file

@ -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 '<param-convert> (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 '<param-set!> new)
(write 'test (current-output-port))
;(write 'test (current-output-port))
;(write 'hello-world)
; END test code