quit
|
The quit function tells the AIS executable to (a) exit the current running Lisp code back to the console level, or
(b) exit the current running Lisp and the current AIS executable back to the operating system level.
Usage The quit function is used to exit a running Lisp program.
For instance the following Lisp code shows how to exit a running program.
(defun foo(Integer:N)
regs:(n)
(loop for n from 0 until N do
(if (> n 1000) then (quit))
(writeln n)
) ; end loop
true)
(quit exitSW) (quit)
Expression:
Arguments
Name
Type
Description Argument: exitSW Boolean
The exitSW, if true, tells AIS to exit the current running executable and return to the operating system level.
Returns:
Expression:
Arguments
Name
Type
Description
Returns:
Here are a number of links to Lambda coding examples which contain this instruction in various use cases.
Here are the links to the data types of the function arguments.
Boolean |
Here are also a number of links to functions having arguments with any of these data types.
Analytic Information Server (AIS)AIS Component Systems
|