ENDWHILE

Top  Previous  Next

Syntax

ENDWHILE

Description

Tests the condition of the corresponding WHILE statement and if true will loop back to the next line of code following the WHILE statement

Parameters

None

Return value

None

Remarks

WEND is a synonym for ENDWHILE and can be used interchangeably.

See Also: WHILE

Example usage

WHILE a < 7
    a = a + 1
ENDWHILE