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")
}
itawaputtytat/puttytat4R documentation built on Jan. 1, 2020, 9:46 a.m.