R/cat_ln.R

Defines functions cat_ln

Documented in cat_ln

#' cat with linefeed at the end Title
#'
#' Copied from tibble:::cat_line()
#' @param ... will be handed over to \code{cat(..., "\n")}
cat_ln <- function(...){
  cat(paste0( ...,  "\n"), sep = "")
}

Try the dmdScheme package in your browser

Any scripts or data that you put into this service are public.

dmdScheme documentation built on Aug. 22, 2022, 9:06 a.m.