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 = "")
}
Exp-Micro-Ecol-Hub/dmdScheme documentation built on Aug. 31, 2022, 3:17 p.m.