Sign in
bazel
/
bazel
/
a15c426bc5dfe9aa16f22553657dee60ccf1b5f5
/
.
/
examples
/
py_native
/
bin.py
blob: 7b656278f6f9e4bfe183119f0fffaefe91c7ff5b [
file
] [
log
] [
blame
]
"""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
)