Compiler error when cond does not have else

This commit is contained in:
Justin Ethier 2015-06-25 00:26:25 -04:00
parent 47fdc4bbe5
commit 83e0a6e662

View file

@ -1,5 +1,12 @@
(import (scheme base)
(scheme file)
(scheme write))
#t
;; TODO: fails with an "unspecified" error unless there is an else clause. WTF?
;(write
(cond
(#f #f)
;(else #t)
)
;)