Rebol Programming/q

USAGE:

edit
Q /return value 

DESCRIPTION:

edit

Stops evaluation and exits the interpreter.

Q is a native value.

REFINEMENTS:

edit
  • /return -- Returns a value (to OS command shell)
    • value -- (Type: integer)

SOURCE CODE

edit
q: native[
    "Stops evaluation and exits the interpreter." 
    /return "Returns a value (to OS command shell)" 
    value [integer!]
]