forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
angerangel edited this page Mar 19, 2013
·
1 revision
Q /return value /now
Stops evaluation and exits the interpreter.
Q is a native value.
-
/return -- Returns a value (to prior script or command shell)
- value -- Note: use integers for command shell
- /now -- Quit immediately
#SOURCE
q: make native! [ [
"Stops evaluation and exits the interpreter."
/return "Returns a value (to prior script or command shell)"
value "Note: use integers for command shell"
/now "Quit immediately"
] ]