RosettaCodeData/Task/Associative-array-Creation/Dao/associative-array-creation.dao

6 lines
250 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
m = { => } # empty ordered map, future inserted keys will be ordered
h = { -> } # empty hash map, future inserted keys will not be ordered
2013-04-10 16:57:12 -07:00
m = { 'foo' => 42, 'bar' => 100 } # with ordered keys
2015-02-20 00:35:01 -05:00
h = { 'foo' -> 42, 'bar' -> 100 } # with unordered keys