Skip to content
angerangel edited this page Mar 19, 2013 · 1 revision

USAGE

   Q /return value /now

DESCRIPTION

Stops evaluation and exits the interpreter.

Q is a native value.

REFINEMENTS

  • /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"
] ]
Clone this wiki locally