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.
16 lines
169 B
16 lines
169 B
11 years ago
|
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))
|