Files
wren/test/core/map/clear.wren
T

8 lines
171 B
Plaintext
Raw Normal View History

2015-01-25 08:39:44 -08:00
var a = {1: 1, 2: 2, 3: 3}
2015-02-26 23:08:36 -08:00
a.clear()
2015-09-15 07:46:09 -07:00
System.print(a) // expect: {}
System.print(a.count) // expect: 0
2015-01-25 08:39:44 -08:00
// Returns null.
2015-09-15 07:46:09 -07:00
System.print({1: 2}.clear()) // expect: null