Wend if the ending instruction of the “WHILE” loop.
Syntax:
1 |
WEND |
Example:
1 2 3 4 5 6 7 8 9 10 |
i = 0 Count = 0 WHILE i <> 11 DO i = i + 1 Count = Count +1 WEND RETURN Count |
Wend if the ending instruction of the “WHILE” loop.
Syntax:
1 |
WEND |
Example:
1 2 3 4 5 6 7 8 9 10 |
i = 0 Count = 0 WHILE i <> 11 DO i = i + 1 Count = Count +1 WEND RETURN Count |