RosettaCodeData/Task/Associative-array-Creation/Insitux/associative-array-creation-1.insitux
2023-07-18 13:56:46 -07:00

7 lines
225 B
Text

{
:a "value" ;keyword key, string value
:b 123 ;keyword key, number value
456 [1 2 3] ;number key, vector value
[5 6 7] :b ;vector key, keyword value
{:a 1} {:b 2} ;dictionary key, dictionary value
}