

   CCoonnccaatteennaattee aanndd PPrriinntt

        cat(... , file = "", sep = " ", fill = FALSE, labels = NULL,
            append = FALSE)

   AArrgguummeennttss::

        ...:

       file: character string naming the file to print to.  If
             `""', `cat' prints to the standard output.

        sep: character string to insert between the objects to
             print.

       fill: ???

     labels: character vector of labels for the lines printed.

     append: if `TRUE', output will be appended to `file'; oth-
             erwise, it will overwrite the contents of `file'.

   VVaalluuee::

        `cat' converts its arguments to character strings, con-
        catenates them, separating them by the given `sep='
        string, and then prints them.

        `cat' is useful for producing output in user defined
        functions.

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

        ## print an informative message
        cat("iteration = ", iter <- iter + 1, "\n")

