RosettaCodeData/Task/Associative-array-Iteration/AutoHotkey/associative-array-iteration.ahk
2013-04-10 14:58:50 -07:00

6 lines
183 B
AutoHotkey

; Create an associative array
obj := Object("red", 0xFF0000, "blue", 0x0000FF, "green", 0x00FF00)
enum := obj._NewEnum()
While enum[key, value]
t .= key "=" value "`n"
MsgBox % t