micropython: add micropython component
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
# test closure with lots of closed over variables
|
||||
|
||||
def f():
|
||||
a, b, c, d, e, f, g, h = [i for i in range(8)]
|
||||
def x():
|
||||
print(a, b, c, d, e, f, g, h)
|
||||
x()
|
||||
|
||||
f()
|
Reference in New Issue
Block a user