Tintware Documentation : Tint Programming Language : Tint Reference : Dictionaries : dictSyntax#(dict,%dict) #(dict,%dict,%key,%value,...) %dict is the name of the dictionary being defined. %key and %value are pairs of key and value which will be used to initialize the dictionary. ... means that you can specify as many key value pairs as you want for initializing the dictionary. Example#(dict,a-dict) #(def,a-dict.a-string,abcd) #(a-dict.a-string) abcd #(dict,a-dict,key1,abcd,key2,efgh,key3,ijkl) #(a-dict.key2) efgh |