Rebol Programming/prin

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

USAGE:

[edit | edit source]
PRIN value 

DESCRIPTION:

[edit | edit source]

Outputs a value with no line break.

PRIN is a native value.

ARGUMENTS:

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

SOURCE CODE

[edit | edit source]
prin: native[
    "Outputs a value with no line break." 
    value "The value to print"
]