From e5d5305a575989c2ea86bc68e8df22093f48f347 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 3 Jun 2015 17:59:12 -0400 Subject: [PATCH] Commenting on (apply) issue --- TODO | 2 ++ test.scm | 1 + 2 files changed, 3 insertions(+) diff --git a/TODO b/TODO index 7ef46d41..a6dcecc9 100644 --- a/TODO +++ b/TODO @@ -11,6 +11,8 @@ Working TODO list: - apply seems broken: cyclone> (apply append '((1) (2) (3))) ((1) (2) (3)) + + This is broken in the interpreter (eval) not in compiled code. probably a deficiency in eval.scm - Constructs require for self-hosting diff --git a/test.scm b/test.scm index 9a04d243..d9b2ec79 100644 --- a/test.scm +++ b/test.scm @@ -7,3 +7,4 @@ ;`(read , (write (make-vector 4 #t)) (write (string->list "abc")) +(write (apply append '((1) (2) (3))))