5 lines
65 B
Text
5 lines
65 B
Text
|
|
seq = [0, "foo", pi]
|
||
|
|
seq.push 42
|
||
|
|
seq = seq + [1, 2, 3]
|
||
|
|
print seq
|