RosettaCodeData/Task/Associative-array-Creation/E/associative-array-creation.e
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

5 lines
314 B
Text

[].asMap() # immutable, empty
["one" => 1, "two" => 2] # immutable, 2 mappings
[].asMap().diverge() # mutable, empty
["one" => 2].diverge(String, float64) # mutable, initial contents,
# typed (coerces to float)