Sign in
bazel
/
bazel
/
c39a0e049361456fce702228d423b6b59eb8f08c
/
.
/
examples
/
py_native
/
bin.py
blob: 45c68b26e525d2825346cbfbf7096e7891960a3a [
file
] [
log
] [
blame
]
# pylint: disable=superfluous-parens
"""A tiny example binary for the native Python rules of Bazel."""
from
examples
.
py_native
.
lib
import
GetNumber
from
fib
import
Fib
print
(
"The number is %d"
%
GetNumber
())
print
(
"Fib(5) == %d"
%
Fib
(
5
))