RosettaCodeData/Task/Loops-For-with-a-specified-step/AutoHotkey/loops-for-with-a-specified-step.ahk
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

11 lines
157 B
AutoHotkey

SetBatchLines, -1
iterations := 5
step := 10
iterations *= step
Loop, % iterations
{
If Mod(A_Index, step)
Continue
MsgBox, % A_Index
}
ExitApp