diff --git a/todo.org b/todo.org new file mode 100644 index 0000000..044bb9d --- /dev/null +++ b/todo.org @@ -0,0 +1,15 @@ +* TODO BUG 1: eval dot notation +#+BEGIN_SRC lisp + (eval `(+ . ,(list 1 2 3))) + ;; should output 6 + ;; throws error instead +#+END_SRC + +* TODO BUG 2: eval dot notation +#+BEGIN_SRC lisp + (prog + (define a (list 1 2 3)) + (eval `(+ . ,a))) + ;; should output 6 + ;; outputs 0 +#+END_SRC