*** empty log message ***
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
; Compute the N'th Fibonacci number.
|
||||
(defun fibonacci (N)
|
||||
(if (or (zerop N) (= N 1))
|
||||
;(if (or (zerop N) (= N 1))
|
||||
(if (or (= N 0) (= N 1))
|
||||
1
|
||||
(+ (fibonacci (- N 1)) (fibonacci (- N 2)))))
|
||||
|
||||
|
9
ase/test/lsp/t6.lsp
Normal file
9
ase/test/lsp/t6.lsp
Normal file
@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
(setq x '(a b c))
|
||||
(setq y '(x y z))
|
||||
(setcar x y)
|
||||
(setcar y x)
|
||||
x
|
||||
y
|
||||
|
Reference in New Issue
Block a user