Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
declare
   package Maps is new Indefinite_Hashed_Maps (Key_Type => String,
                                               Element_Type => Integer,
                                               Hash => Ada.Strings.Hash,
                                               Equivalent_Keys => "=");
      
   use Maps;
      
   X : Map := Empty_Map;
begin
   X.Insert ("One", 1);
   X.Insert ("Two", 2);
   X.Insert ("Three", 3);
end;
		
		
	module StringMap = Map.Make(String)
let x =
    StringMap.empty
    |> StringMap.add "one" 1
    |> StringMap.add "two" 2
    |> StringMap.add "three" 3
		
		
	(def x {"One" 1
	"Two" 2
	"Three" 3})
		
		
	int[string] x = ["one": 1, "two": 2];
		
		
	var x = {
	"one": 1,
	"two": 2
};
		
		
	x = %{"one" => 1, "two" => 2}
		
		
	x = %{one: 1, two: 2}
		
		
	X = #{one => 1, "two" => 2.0, <<"three">> => [i, i, i]}.
		
		
	x := map[string]int {"one": 1, "two": 2}
		
		
	def x = [un:1, dos:2, tres:3]
		
		
	def x = ['un':1, 'dos':2, 'tres':3]
		
		
	const x = new Map();
x.set("one", 1);
x.set("two", 2);
		
		
	const x = {one: 1, two:2}
		
		
	const x = new Map([["one",1],["two",2]]);
		
		
	val x = mutableMapOf<String, Int>().apply { 
    this["one"] = 1
    this["two"] = 2
}
		
		
	val x = mutableMapOf<String, Int>()
x["one"] = 1
x["two"] = 2
		
		
	val x = mapOf("one" to 1, "two" to 2)
		
		
	(let ((table (make-hash-table)))
  (setf (gethash 'one table) 1)
  (setf	(gethash 'two table) 2))
		
		
	x = {one = 1, two = 2}
		
		
	NSDictionary *x=@{@"one":@1, @"two":@2};
		
		
	$x = ['one' => 1, 'two' => 2];
		
		
	my %x = ( 
    name => 'Roboticus',
    'foo bar' => 'joe'
);
		
		
	x = {"one" : 1, "two" : 2}
		
		
	class DefaultMap(dict):
    def __init__(self, *args, **kwargs):
        kwargs = {'x': 1, 'y': 2} | kwargs
        super().__init__(args, **kwargs)
x = DefaultMap(z=3)
		
		
	keys = 'abc'
values = 1, 2, 3
x = dict(zip(keys, values))
		
		
	x = {}
x['a'] = 1
x['b'] = 2
x['c'] = 3
		
		
	x = dict(a=1, b=2, c=3)
		
		
	x = {one: 1, two: 2}
		
		
	val x = Map("a" -> 1, "b" -> 2, "c" -> 3)
		
		
	(define x '(
    ("one" 1) 
    ("two" 2) 
    ("three" 3)))
		
		
	x := Dictionary newFrom: {
	#a -> 1.
	#b -> Object new}.