Sign in
bazel
/
bazel
/
0f9c6ea574918dda094cf5423fa3822112846c30
/
.
/
examples
/
py_native
/
bin.py
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
))