index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
basics
/
builtin_abs.py
blob: 142344e226add596aee42d705158cc4124a8f044 (
plain
)
1
2
3
4
5
6
# test builtin abs
print
(
abs
(
False
))
print
(
abs
(
True
))
print
(
abs
(
1
))
print
(
abs
(
-
1
))