R/overmessage.R

Defines functions overmessage

Documented in overmessage

overmessage <- function(msg, prevmsglength) {
  msglength <- nchar(msg)
  if (prevmsglength>0) {message("\r", appendLF=F)}  	##FR: for backslash-b see ?Quotes ...
  message(msg, appendLF=F)
  return(msglength)
}

Try the blackbox package in your browser

Any scripts or data that you put into this service are public.

blackbox documentation built on May 29, 2024, 1:15 a.m.