Rebol Programming/print

USAGE:

edit
PRINT value 

DESCRIPTION:

edit

Outputs a value followed by a line break.

PRINT is a native value.

ARGUMENTS:

edit
  • value -- The value to print (Type: any)

SOURCE CODE

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