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 CODEEdit

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