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 = "")
}
rkrug/dmdScheme documentation built on Sept. 1, 2022, 4:42 a.m.