Associative array/Creation: Difference between revisions

Content added Content deleted
m (→‎{{header|Picat}}: Added {{out}})
Line 2,712: Line 2,712:


<lang dyalect>var t = (x: 1, y: 2, z: 3)
<lang dyalect>var t = (x: 1, y: 2, z: 3)
print(t.Keys())</lang>
print(t.Keys().ToArray())</lang>


{{out}}
{{out}}


<pre>{x, y, z}</pre>
<pre>[x, y, z]</pre>


=={{header|E}}==
=={{header|E}}==