RosettaCodeData/Task/Associative-array-Creation/Elena/associative-array-creation-2.elena
2023-07-01 13:44:08 -04:00

12 lines
237 B
Text

import system'collections;
public program()
{
// 1. Create
auto map := new Map<string,string>();
map["key"] := "foox";
map["key"] := "foo";
map["key2"]:= "foo2";
map["key3"]:= "foo3";
map["key4"]:= "foo4";
}