mirror of
https://github.com/Dummi26/mers.git
synced 2025-03-10 14:13:52 +01:00
9 lines
125 B
Plaintext
9 lines
125 B
Plaintext
list = [1 2 3 4 5 6 7 8 9 ...]
|
|
|
|
second = &list.get_ref(2).assume1()
|
|
second.debug()
|
|
*second = 24
|
|
second.debug()
|
|
|
|
list.debug()
|