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

5 lines
90 B
Plaintext
Raw Normal View History

2015-07-10 09:18:22 -07:00
var map = Map.new()
2015-01-24 22:27:35 -08:00
2015-09-15 07:46:09 -07:00
System.print(map.count) // expect: 0
System.print(map) // expect: {}