6 lines
59 B
Text
6 lines
59 B
Text
|
|
arr = ["a", 1, 3]
|
||
|
|
print arr[0]
|
||
|
|
|
||
|
|
arr.push "x"
|
||
|
|
print arr.pop
|