R/cat0.R

Defines functions cat0

Documented in cat0

#' Title
#'
#' @param ...
#'
#' @return
#' @export
cat0 <- function(...){
  ## Makes it so you can write this:
  ## cat0("X = ", X, " and Y = ", Y)
  ## instead of this:
  ## cat(paste("X = ", X, " and Y = ", Y, "\n", sep=""))
  cat(..., "\n", sep="")
}
JBLecomte/JBUtilities documentation built on March 31, 2021, 7:25 p.m.