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 = "")
}
UZH-PEG/dmdScheme documentation built on Sept. 4, 2022, 8:06 a.m.