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.
ChocoPy/pa2-tests/core/expr_list_index.py

13 lines
130 B

x:[int] = None
y:int = 0
z:[bool] = None
o:object = None
x = [1, 2, 3]
z = [False, True]
y = x[0]
x[0] = 1
z[1] = z[0]
o = x[1]