5 lines
250 B
Text
5 lines
250 B
Text
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
|