Retrieving an Element of an Array: Difference between revisions

m
→‎{{header|AutoHotkey}}: Minor indentation and casing edit
(Slate implementation)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 76:
<lang autohotkey>string = abcde
StringSplit, array, string
Loop, % array0
MsgBox, % array%A_Index%</lang>
 
=={{header|AWK}}==