21. 4GL Statement Glossary : Exit
 
Share this page                  
Exit
Closes the application.
Syntax
exit
Description
The 4GL exit statement closes the entire application and returns control to the level from which the application was originally entered.
Example
The Quit menu operation ends the application:
'Quit', key frskey2 = 
begin
  exit; 
end