June 2018 Update
This commit is contained in:
parent
ba8067c3b7
commit
22f33d4004
5278 changed files with 84726 additions and 14379 deletions
|
|
@ -1,8 +1,11 @@
|
|||
(defun terminate (status)
|
||||
#+sbcl (sb-ext:quit :unix-status status) ; SBCL
|
||||
#+ccl ( ccl:quit status) ; Clozure CL
|
||||
#+clisp ( ext:quit status) ; GNU CLISP
|
||||
#+cmu ( unix:unix-exit status) ; CMUCL
|
||||
#+abcl ( ext:quit :status status) ; Armed Bear CL
|
||||
#+allegro ( excl:exit status :quiet t) ; Allegro CL
|
||||
#+sbcl ( sb-ext:quit :unix-status status) ; SBCL
|
||||
#+ccl ( ccl:quit status) ; Clozure CL
|
||||
#+clisp ( ext:quit status) ; GNU CLISP
|
||||
#+cmu ( unix:unix-exit status) ; CMUCL
|
||||
#+ecl ( ext:quit status) ; ECL
|
||||
#+abcl ( ext:quit :status status) ; Armed Bear CL
|
||||
#+allegro ( excl:exit status :quiet t) ; Allegro CL
|
||||
#+gcl (common-lisp-user::bye status) ; GCL
|
||||
#+ecl ( ext:quit status) ; ECL
|
||||
(cl-user::quit)) ; Many implementations put QUIT in the sandbox CL-USER package.
|
||||
|
|
|
|||
1
Task/Program-termination/Julia/program-termination.julia
Normal file
1
Task/Program-termination/Julia/program-termination.julia
Normal file
|
|
@ -0,0 +1 @@
|
|||
quit() # terminates program normally, with its child processes. See also exit(0).
|
||||
|
|
@ -0,0 +1 @@
|
|||
IF terminallyIll THEN terminate_program;
|
||||
Loading…
Add table
Add a link
Reference in a new issue