The print generic; its default method
print.default (used for many basic implicit classes such
as "numeric", "character" and arrays of
them, lists etc).
## The function is simply defined asfunction (x, ...) {
writeLines(format(x, ...))
invisible(x)
}
## is used for simple print methods in R, and as prototype for new methods.