R/pauseAndContinue.R

Defines functions pauseAndContinue

Documented in pauseAndContinue

#' @title Pause and continue
#' @description Press any key to continue
#' @export

pauseAndContinue <- function() {
  cat("\n\n")
  readline("Program paused. Press any key to continue.")
  cat("\n")
}
magrai/puttytat4R documentation built on Dec. 31, 2019, 5 a.m.