200504018-5-5Command ReferenceDescription:• The default step value is 1.• Making the starting value less than the ending value and specifying a positive step valuecauses the control variable to be incremented with each execution. Making the startingvalue greater than the ending value and specifying a negative step value causes the controlvariable to be decremented with each execution.Do~LpWhileFunction: This command repeats specific commands as long as its condition is true (non-zero).Syntax:Parameters: expressionDescription:• This command repeats the commands contained in the loop as long as its condition is true(non-zero). When the condition becomes false (0), execution proceeds from the statementfollowing the LpWhile-statement.• Since the condition comes after the LpWhile-statement, the condition is tested (checked)after all of the commands inside the loop are executed._ _Do : : LpWhile ^ ^ numeric expression