Rebol Programming/q

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

Q /return value 

DESCRIPTION:[edit | edit source]

Stops evaluation and exits the interpreter.

Q is a native value.

REFINEMENTS:[edit | edit source]

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

SOURCE CODE[edit | edit source]

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