aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/py_native/bin.py
blob: b7e1223988d0688034b0ab5345a910018cb5ddb9 (plain)
1
2
3
4
5
6
7
# pylint: disable=superfluous-parens
"""A tiny example binary for the native Python rules of Bazel."""
from fib import Fib
from lib import GetNumber

print("The number is %d" % GetNumber())
print("Fib(5) == %d" % Fib(5))