Yun Peng | dce45d3 | 2017-03-21 10:28:13 +0000 | [diff] [blame] | 1 | # pylint: disable=superfluous-parens |
Lukacs Berki | f5e23c6 | 2015-03-27 14:08:38 +0000 | [diff] [blame] | 2 | """A tiny example binary for the native Python rules of Bazel.""" |
lberki | fa0fac2 | 2018-02-14 15:12:23 +0100 | [diff] [blame] | 3 | from examples.py_native.lib import GetNumber |
David Chen | ea02b8a | 2016-02-10 12:52:11 +0000 | [diff] [blame] | 4 | from fib import Fib |
Lukacs Berki | f5e23c6 | 2015-03-27 14:08:38 +0000 | [diff] [blame] | 5 | |
Yun Peng | dce45d3 | 2017-03-21 10:28:13 +0000 | [diff] [blame] | 6 | print("The number is %d" % GetNumber()) |
| 7 | print("Fib(5) == %d" % Fib(5)) |