RosettaCodeData/Task/Associative-array-Creation/Elena/associative-array-creation-1.elena

13 lines
228 B
Text
Raw Permalink Normal View History

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