mirror of
https://github.com/wren-lang/wren.git
synced 2026-01-16 20:28:04 +01:00
Still lots of methods missing and clean up and tests to do. Also still no literal syntax. But the core hash table code is there and working. The supported key types are all, uh, supported.
5 lines
80 B
Plaintext
5 lines
80 B
Plaintext
var map = new Map
|
|
|
|
IO.print(map.count) // expect: 0
|
|
IO.print(map) // expect: {}
|