Difference between revisions of "EXIT()"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Terminate session returning a message or status code ==Syntax== EXIT(<expC>|<expN>) ==See Also== CLOSE, DIE(), ERRORLEVEL(), QUIT, RUN ==Des...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Purpose==
 
==Purpose==
Terminate session returning a message or status code
+
Function to terminate the session and return a message or status code
  
 
==Syntax==
 
==Syntax==
Line 18: Line 18:
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Functions]]
 
[[Category:Functions]]
[[Category:Applications]]
+
[[Category:User Defined Functions]]
[[Category:Applications Functions]]
+
 
[[Category:Lianja VFP Extensions]]
 
[[Category:Lianja VFP Extensions]]
 
[[Category:VFP Function Extensions]]
 
[[Category:VFP Function Extensions]]

Latest revision as of 07:49, 23 October 2013

Purpose

Function to terminate the session and return a message or status code

Syntax

EXIT(<expC>|<expN>)

See Also

CLOSE, DIE(), ERRORLEVEL(), QUIT, RUN

Description

The EXIT() function closes all open files and ends the Lianja process, returns the specified message, <expC>, or status code (-1 to 254), <expN>, to the operating system or calling script.

Example

exit("User "+user()+ " exited at "+time())