This help topic is for R version 0.60. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/base/html/print.default.html
print.default {base}R Documentation

Default Printing

Description

print prints its argument.

A non-null value for digits specifies the number of significant digits to be printed in values. If digits is NULL, the value of digits set by options is used.

The value of quote indicates whether or not strings should be printed with surrounding quotes.

na.print is a string which is used to indicate NA values in printed output.

print.gap gives the spacing between adjacent columns in printed matrices and arrays.

Usage

print.default(x, digits = NULL, quote = TRUE, na.print = "NA",
              print.gap = 1, ...)

See Also

options.

Examples

pi
print(pi, digits = 16)
LETTERS[1:16]
print(LETTERS, quote = FALSE)

[Package base version 0.60 ]