micropython/tests/bytecode/mp-tests/scope0.py

8 wiersze
73 B
Python

x = 1
print(x)
# local store after load
def f():
print(x)
x = 1