소스 검색

todo

master
Felix Brendel 7 년 전
부모
커밋
9422a1fa7d
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. +15
    -0
      todo.org

+ 15
- 0
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

불러오는 중...
취소
저장