*** empty log message ***
This commit is contained in:
7
ase/test/lsp/t4.lsp
Normal file
7
ase/test/lsp/t4.lsp
Normal file
@ -0,0 +1,7 @@
|
||||
;Compute the factorial of N.
|
||||
(defun factorial (N)
|
||||
(if (= N 1)
|
||||
1
|
||||
(* N (factorial (- N 1)))))
|
||||
|
||||
(factorial 10)
|
Reference in New Issue
Block a user