RosettaCodeData/Task/Associative-array-Creation/Elena/associative-array-creation-1.elena
2026-02-01 16:33:20 -08:00

12 lines
229 B
Text

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