import pyb
@micropython.native
def f1(n):
for i in range(n):
print(i)
f1(4)
def f2(r):
for i in r:
f2(range(4))