This website works better with JavaScript.
Home
Explore
Help
Sign In
felix
/
slime
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
todo
master
Felix Brendel
7 years ago
parent
1bd77be7f6
commit
9422a1fa7d
1 changed files
with
15 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+15
-0
todo.org
+ 15
- 0
todo.org
View 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
Write
Preview
Loading…
Cancel
Save