| Prompt for values (PROMPT) / Examples | |
MAIN
DEFINE birth DATE
LET INT_FLAG = FALSE
PROMPT "Please enter your birthday: " FOR birth
IF INT_FLAG THEN
DISPLAY "Interrupt received."
ELSE
DISPLAY "Your birthday is: " || birth
END IF
END MAIN