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
/
lambda1.py
blob: 06111d6a93fdb5aec42009c43f7957cc475ef140 (
plain
)
1
2
3
4
# lambda
f
=
lambda
x
,
y
:
x
+
3
*
y
print
(
f
(
3
,
5
))