summaryrefslogtreecommitdiff
path: root/tests/micropython/const.py
blob: 457365c50a1c55884b253e7a77135cb50b3f3908 (plain)
1
2
3
4
5
6
7
8
9
10
11
# test constant optimisation

X = const(123)
Y = const(X + 456)

print(X, Y + 1)

def f():
    print(X, Y + 1)

f()