# Pick Each Integer

Grammar — Pick each integer from s to e, and do (Actions)
FlagsSubFunctions | Action

Picks each integer between the Start and End parameters, and performs the specified actions. Uses the “Picked Integer” function to refer to the iterator in the action set.

# Arguments

  • int — Start
  • int — End

Returns — void

#INITAUTOVAR(ae,e)
#AUTOVAR(var) = #PARAM(s);
for ( ; #AUTOVAR(var) <= #AUTOVAR(ae); #AUTOVAR(var) += 1 ) {
    #SUBFUNCS(actions)
}

Category: General / Loops

# Examples

— None found —