RosettaCodeData/Task/Associative-array-Creation/AutoHotkey/associative-array-creation-1.ahk
2026-04-30 12:34:36 -04:00

3 lines
214 B
AutoHotkey

associative_array := {key1: "value 1", "Key with spaces and non-alphanumeric characters !*+": 23}
MsgBox % associative_array.key1
. "`n" associative_array["Key with spaces and non-alphanumeric characters !*+"]