Lukacs Berki | f5e23c6 | 2015-03-27 14:08:38 +0000 | [diff] [blame] | 1 | """A tiny example binary for the native Python rules of Bazel.""" |
2 | from examples.py_native.lib import GetNumber | ||||
David Chen | ea02b8a | 2016-02-10 12:52:11 +0000 | [diff] [blame] | 3 | from fib import Fib |
Lukacs Berki | f5e23c6 | 2015-03-27 14:08:38 +0000 | [diff] [blame] | 4 | |
5 | print "The number is %d" % GetNumber() | ||||
David Chen | ea02b8a | 2016-02-10 12:52:11 +0000 | [diff] [blame] | 6 | print "Fib(5) == %d" % Fib(5) |