RosettaCodeData/Task/Associative-array-Creation/Elena/associative-array-creation-1.elena
2019-09-12 10:33:56 -07:00

12 lines
228 B
Text

import system'collections;
public program()
{
// 1. Create
var map := new Dictionary();
map["key"] := "foox";
map["key"] := "foo";
map["key2"]:= "foo2";
map["key3"]:= "foo3";
map["key4"]:= "foo4";
}