You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
169 B
15 lines
169 B
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))
|
|
|