5 lines
55 B
Plaintext
5 lines
55 B
Plaintext
|
var x = [1, 2, 3];
|
||
|
print(x[1]);
|
||
|
x[1] = 5;
|
||
|
print(x[1]);
|