Rebol Programming/comment

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

USAGE:[edit | edit source]

COMMENT value 

DESCRIPTION:[edit | edit source]

Ignores the argument value and returns nothing.

COMMENT is a native value.

ARGUMENTS[edit | edit source]

  • value -- A string, block, or any other value (Type: any)

SOURCE CODE[edit | edit source]

comment: native[
    "Ignores the argument value and returns nothing." 
    value "A string, block, or any other value"
]