RosettaCodeData/Task/Associative-array-Creation/Insitux/associative-array-creation-3.insitux

4 lines
120 B
Text
Raw Permalink Normal View History

2023-07-18 13:56:46 -07:00
;extend existing dictionary by using it as a function with two arguments
> ({:a 1, :b 2, :c 3} :b 3)
{:a 1, :b 3, :c 3}