Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
87882e1708bc5118bcaaed048c121c75e349888c
/
.
/
tests
/
basics
/
builtin_pow.py
blob: 5012a76beeb07c09c7e86a95c9d7b4d8f408f640 [
file
] [
log
] [
blame
]
# test builtin pow() with integral values
# 2 arg version
print
(
pow
(
0
,
1
))
print
(
pow
(
1
,
0
))
print
(
pow
(-
2
,
3
))
print
(
pow
(
3
,
8
))