R/print.R

Defines functions print.waitress

#' @export
print.waitress <- function(x, ...) {
	if(is.null(x$id))
		x <- "A waitress on the whole screen."
	else
		x <- paste("A waitress applied to an object of id:", x$id)

	print(x, ...)
}
JohnCoene/waiter documentation built on April 16, 2024, 5:34 a.m.