diff --git a/test2.scm b/test2.scm index abb6fa6e..81a87769 100644 --- a/test2.scm +++ b/test2.scm @@ -5,17 +5,17 @@ ;; 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 ??? (write 'hello) -;(let loop ((i 10)) -; (if (zero? i) -; (write 'done) -; (loop (- i 1)))) -; -; -;(write (command-line-arguments)) -; -;(write (when (lambda () #t) 'true)) -;(write (when (lambda () #f) 'false)) -; +(let loop ((i 10)) + (if (zero? i) + (write 'done) + (loop (- i 1)))) + + +(write (command-line-arguments)) + +(write (when (lambda () #t) 'true)) +(write (when (lambda () #f) 'false)) + ;; Need to fix this up at some point: ;; ;; Lambda application is broken with pure varargs