Files
wren/test/list/add.wren
T

9 lines
152 B
Plaintext
Raw Normal View History

2014-04-06 08:37:37 -07:00
var a = [1]
2013-11-26 18:02:10 -08:00
a.add(2)
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: [1, 2]
2013-11-26 18:02:10 -08:00
a.add(3)
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: [1, 2, 3]
2013-11-26 18:02:10 -08:00
// Returns added element.
2014-01-05 12:27:12 -08:00
IO.print(a.add(4)) // expect: 4