blob: 645a937a0e3bee8fda2abbcc3e30d3f4e6bd7ade [file] [log] [blame]
David Chenea02b8a2016-02-10 12:52:11 +00001"""An example binary to test the imports attribute of native Python rules."""
2
3
4def Fib(n):
5 if n == 0 or n == 1:
6 return 1
7 else:
8 return Fib(n-1) + Fib(n-2)