This website requires JavaScript.
Explore
Help
Sign In
hmn
/
orca
Watch
5
Fork
You've already forked orca
2
Code
Issues
21
Pull Requests
1
Packages
Projects
Releases
Wiki
Activity
b9bd2723a9
orca
/
ext
/
wasm3
/
test
/
lang
/
fib.py
8 lines
115 B
Python
Executable File
Raw
Blame
History
import
sys
def
fib
(
n
)
:
if
n
<
2
:
return
n
return
fib
(
n
-
1
)
+
fib
(
n
-
2
)
print
(
fib
(
int
(
sys
.
argv
[
1
]
)
)
)
Reference in New Issue
View Git Blame
Copy Permalink