< Rebol Programming

USAGE:

PRINT value 

DESCRIPTION:

Outputs a value followed by a line break.

PRINT is a native value.

ARGUMENTS:

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

SOURCE CODE

print: native[
    "Outputs a value followed by a line break." 
    value "The value to print"
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.