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

6 lines
250 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
m = { => } # empty ordered map, future inserted keys will be ordered
h = { -> } # empty hash map, future inserted keys will not be ordered
m = { 'foo' => 42, 'bar' => 100 } # with ordered keys
h = { 'foo' -> 42, 'bar' -> 100 } # with unordered keys