mirror of
https://github.com/micropython/micropython.git
synced 2025-09-04 17:00:30 +02:00
12 lines
152 B
Python
12 lines
152 B
Python
# test nested functions and scope
|
|
|
|
def f(x):
|
|
def f2(y):
|
|
return y + x
|
|
print(f2(x))
|
|
return f2
|
|
x=f(2)
|
|
print(x, x(5))
|
|
f=123
|
|
print(f(f))
|