Rebol Programming/comment

USAGE:

edit
COMMENT value 

DESCRIPTION:

edit

Ignores the argument value and returns nothing.

COMMENT is a native value.

ARGUMENTS

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

SOURCE CODE

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