DEBSOURCES
Skip Quicknav
sources / bazel-bootstrap / 4.2.3%2Bds-9 / examples / py_native / fibonacci / fib.py
12345678
"""An example binary to test the imports attribute of native Python rules.""" def Fib(n): if n == 0 or n == 1: return 1 else: return Fib(n-1) + Fib(n-2)