Rebol Programming/print

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

USAGE:

[edit | edit source]
PRINT value 

DESCRIPTION:

[edit | edit source]

Outputs a value followed by a line break.

PRINT is a native value.

ARGUMENTS:

[edit | edit source]
  • value -- The value to print (Type: any)

SOURCE CODE

[edit | edit source]
print: native[
    "Outputs a value followed by a line break." 
    value "The value to print"
]