! The next line is a variable declaration for a one character string that will be used to hold ! the response to the displayed prompt. It goes right below the Memory[500] line. string conf[1] ! Insert the next line before the first measurement in the program. ! This is where the program will jump to if user presses the Y key start: ! Insert the following after the last measurement in the program. dy ("Enter Y to continue after loading part. Any other key to end.") read (conf) if not ((conf eq "Y") or (conf eq "y")) then jump done end_if dy ("") jump start done: