Files
wren/test/list/clear.wren
T

8 lines
150 B
Plaintext
Raw Normal View History

2013-11-26 23:11:11 -08:00
var a = [1, 2, 3]
2015-02-26 23:08:36 -08:00
a.clear()
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: []
IO.print(a.count) // expect: 0
2013-11-26 23:11:11 -08:00
// Returns null.
2015-02-26 23:08:36 -08:00
IO.print([1, 2].clear()) // expect: null