Example 2: Simple PROMPT with Interrupt Checking

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