Retrieving an Element of an Array: Difference between revisions

Content deleted Content added
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}}==