Felix Brendel 7 anni fa
parent
commit
9422a1fa7d
1 ha cambiato i file con 15 aggiunte e 0 eliminazioni
  1. +15
    -0
      todo.org

+ 15
- 0
todo.org Vedi File

@@ -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

Caricamento…
Annulla
Salva