CONTINUE
General Format
CONTINUE
Syntax rules
1. The CONTINUE statement may be used anywhere a conditional statement or an imperative-statement may be used.
General rules
1. The CONTINUE statement has no effect on the execution of the runtime element.
Examples
Continue in the next statement if condition is true
if ws-age > 17 
   continue
else 
   display message "Not valid age to use this Credit Card Verification App!"
end-if
display message "Welcome to our Credit Card Verification App!"