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.html
print {base}R Documentation

Print Values

Description

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.

Usage

print(x, ...)

See Also

print.default.

Examples

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

[Package base version 0.60 ]