blob: 45c68b26e525d2825346cbfbf7096e7891960a3a [file] [log] [blame]
Yun Pengdce45d32017-03-21 10:28:13 +00001# pylint: disable=superfluous-parens
Lukacs Berkif5e23c62015-03-27 14:08:38 +00002"""A tiny example binary for the native Python rules of Bazel."""
lberkifa0fac22018-02-14 15:12:23 +01003from examples.py_native.lib import GetNumber
David Chenea02b8a2016-02-10 12:52:11 +00004from fib import Fib
Lukacs Berkif5e23c62015-03-27 14:08:38 +00005
Yun Pengdce45d32017-03-21 10:28:13 +00006print("The number is %d" % GetNumber())
7print("Fib(5) == %d" % Fib(5))