Added code back

This commit is contained in:
Justin Ethier 2015-07-02 22:50:36 -04:00
parent 1f1e3f4d59
commit d0e05c0fd3

View file

@ -5,17 +5,17 @@
;; TODO: C macros for funcall1, etc are not being generated even though entries are set ;; TODO: C macros for funcall1, etc are not being generated even though entries are set
;; in the vector. must be another problem inspecting the vector ??? ;; in the vector. must be another problem inspecting the vector ???
(write 'hello) (write 'hello)
;(let loop ((i 10)) (let loop ((i 10))
; (if (zero? i) (if (zero? i)
; (write 'done) (write 'done)
; (loop (- i 1)))) (loop (- i 1))))
;
;
;(write (command-line-arguments)) (write (command-line-arguments))
;
;(write (when (lambda () #t) 'true)) (write (when (lambda () #t) 'true))
;(write (when (lambda () #f) 'false)) (write (when (lambda () #f) 'false))
;
;; Need to fix this up at some point: ;; Need to fix this up at some point:
;; ;;
;; Lambda application is broken with pure varargs ;; Lambda application is broken with pure varargs