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
/
generator2.py
blob: 0dfc98a2d64391610d5355ca380ef8bc8930d665 (
plain
)
1
2
3
gen
=
(
i
for
i
in
range
(
10
))
for
i
in
gen
:
print
(
i
)