# Compute the x'th fibonacci number.
def fib(x)
if x < 3 then
1
else
fib(x-1)+fib(x-2)
# This expression will compute the 40th number.
fib(40)
-
Notifications
You must be signed in to change notification settings - Fork 1
rockrid3r/Kaleidoscope
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
Follow through LLVM tutorial to implement Kaleidoscope language
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published