This website requires JavaScript.
Explore
Help
Sign In
zongor
/
undar-lang
Watch
1
Star
0
Fork
You've already forked undar-lang
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
main
undar-lang
/
bench
/
fib.lisp
6 lines
115 B
Common Lisp
Raw
Permalink
Blame
History
(
lambda
fib
(
n
)
(
if
(
n
<
2
)
(
return
n
)
)
(
return
(
+
(
fib
(
-
n
2
)
)
(
fib
(
-
n
1
)
)
)
)
)
(
print
(
fib
35
)
)
Reference in New Issue
View Git Blame
Copy Permalink