RosettaCodeData/Task/Loops-For-with-a-specified-step/AutoHotkey/loops-for-with-a-specified-step.ahk
2023-07-01 13:44:08 -04: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