Rebol Programming/prin

USAGE:

edit
PRIN value 

DESCRIPTION:

edit

Outputs a value with no line break.

PRIN is a native value.

ARGUMENTS:

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

SOURCE CODE

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