200504018-5-6Command ReferenceWhile~WhileEndFunction: 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 WhileEnd-statement.• Since the condition comes after the While-statement, the condition is tested (checked)before the commands inside the loop are executed.kkkkk Program Control Commands (CTL)BreakFunction: This command breaks execution of a loop and continues from the next commandfollowing the loop.Syntax: BreakDescription:• This command breaks execution of a loop and continues from the next command followingthe loop.• This command can be used to break execution of a For-statement, Do-statement, andWhile-statement._:^_:^While WhileEndnumeric expression