

   PPrriinntt VVaalluueess

        print(x, ...)

   DDeessccrriippttiioonn::

        `print' prints its argument.  It is implemented as a
        generic function which means that new printing methods
        can be easily added for new classes.

        The default version of print is described in
        `print.default'.

   SSeeee AAllssoo::

        `print.default'.

   EExxaammpplleess::

        ts(1:20)#-- print  is the ``Default function'' --
        rr <- for(i in 1:3) print(1:i)
        rr

