RosettaCodeData/Task/Associative-array-Creation/Zkl/associative-array-creation.zkl

6 lines
143 B
Text
Raw Permalink Normal View History

2017-09-23 10:01:46 +02:00
zkl: Dictionary("one",1, "two",2, "three",3)
D(two:2,three:3,one:1)
zkl: T("one",1, "two",2, "three",3).toDictionary()
D(two:2,three:3,one:1)