REBOL Programming/comment

From Wikibooks, open books for an open world
< REBOL Programming
Jump to: navigation, search

Contents

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"
]

{{BookCat}}