Example 3: PROMPT with ATTRIBUTES and ON ACTION handlers

MAIN
  DEFINE birth DATE
  LET birth = TODAY
  PROMPT "Please enter your birthday: " FOR birth 
     ATTRIBUTES(WITHOUT DEFAULTS)
        ON ACTION action1
           DISPLAY "Action 1"
  END PROMPT
  DISPLAY "Your birthday is " || birth 
END MAIN