R/bye.R

Defines functions bye

Documented in bye

#' Wrapper function of R's native quit() function.
#'
#' Quit the current working session without saving the current workspace.
#'
#' @export

#' @examples
#' \dontrun{
#' bye()
#' }

bye <- function() {
   base::quit('no')
}
mchevalier2/chevalieR documentation built on May 20, 2023, 7:10 a.m.