REBOL Programming/print

      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"
      ]
      
      Last modified on 31 October 2012, at 16:47