Loops/Continue: Difference between revisions

m
→‎{{header|AutoHotkey}}: Minor indentation and casing edit
(Forth)
m (→‎{{header|AutoHotkey}}: Minor indentation and casing edit)
Line 45:
<lang autohotkey>
Loop, 10 {
Delimiter := (A_Index = 5) || (A_Index = 10) ? "`n":", "
Index .= A_Index . Delimiter
}
MsgBox %Index%
</lang>