This website requires JavaScript.
Explore
Help
Sign In
Eatswap
/
DragonLisp
Watch
1
Star
0
Fork
You've already forked DragonLisp
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
b5c6d0ed87
DragonLisp
/
sample.lisp
15 lines
152 B
Common Lisp
Raw
Blame
History
(
defun
f
(
x
)
(
if
(
<=
x
1
)
1
(
+
(
f
(
-
x
1
)
)
(
f
(
-
x
2
)
)
)
)
)
(
f
15
)
Reference in New Issue
View Git Blame
Copy Permalink