R/br.r

Defines functions br

Documented in br

#' Send newline characters to the R console
#'
#' @param n number of newline characters to print; negative n will clear the
#'   console with uataq::clc()
#' 
#' @export

br <- function(n = 1) {
  if (n < 0)
    uataq::clc()
  else 
    cat(rep('\n', n))
}
benfasoli/uataq documentation built on Sept. 27, 2021, 9:29 p.m.