Rebol Programming/comment

USAGE:

COMMENT value 

DESCRIPTION:

Ignores the argument value and returns nothing.

COMMENT is a native value.

ARGUMENTS

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

SOURCE CODE

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