mirror of
https://github.com/micropython/micropython.git
synced 2024-07-26 18:26:56 +01:00
16 lines
169 B
Python
16 lines
169 B
Python
import pyb
|
|
|
|
@micropython.native
|
|
def f1(n):
|
|
for i in range(n):
|
|
print(i)
|
|
|
|
f1(4)
|
|
|
|
@micropython.native
|
|
def f2(r):
|
|
for i in r:
|
|
print(i)
|
|
|
|
f2(range(4))
|