!Fragment to illustrate calling WINDOW for input
DECLARE SUBROUTINE WINDOW
DIMENSION ARG(6)         ;*window fields will be stored here
@PSEUDO=''               ;*initial value to feed into window
@SENTENCE='WINDOW APP'   ;*tells WINDOW which window to run
CALL WINDOW              ;*run the window
MATPARSE @RECORD INTO ARG;*move results into array
*remainder of application code
END
