R/clear_console.R

Defines functions clear_console

Documented in clear_console

#' Clears the console when run
#'
#' Found this trick on https://stackoverflow.com/a/16084793 and it works
#' a treat!
#'
#' @return Nothing, but clears the console
#' @export
clear_console <- function() {
  cat("\014")
}
aguynamedryan/helpRs documentation built on Dec. 18, 2021, 11:23 p.m.