turned off debug print

This commit is contained in:
Danny Yoo 2013-03-06 16:28:08 -07:00
parent b01447626c
commit 07b393f693

View File

@ -74,7 +74,7 @@
(define op (open-output-bytes)) (define op (open-output-bytes))
(write raw-bytecode op) (write raw-bytecode op)
(define whalesong-bytecode (parse-bytecode (open-input-bytes (get-output-bytes op)))) (define whalesong-bytecode (parse-bytecode (open-input-bytes (get-output-bytes op))))
(pretty-print whalesong-bytecode) #;(pretty-print whalesong-bytecode)
(define compiled-bytecode (compile-for-repl whalesong-bytecode)) (define compiled-bytecode (compile-for-repl whalesong-bytecode))
#;(pretty-print compiled-bytecode) #;(pretty-print compiled-bytecode)
(define assembled-op (open-output-string)) (define assembled-op (open-output-string))