Sign in
bazel
/
bazel
/
4256ce1915c69bb8a8cee0b5c09a094768b7cd02
/
.
/
examples
/
py
/
lib.py
blob: a27d4ce47cbc903c7432a0094960c15c3fe9477a [
file
] [
log
] [
blame
]
def
Fib
(
n
):
if
n
==
0
or
n
==
1
:
return
1
else
:
return
Fib
(
n
-
1
)
+
Fib
(
n
-
2
)