blob: b7e1223988d0688034b0ab5345a910018cb5ddb9 [file] [log] [blame]
# 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))