mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
4 lines
43 B
Python
4 lines
43 B
Python
x = [1,999,3]
|
|
x[1] = 2
|
|
assert [1,2,3] == x
|