R/zzz.R

Defines functions .onAttach

.onAttach <- function(libname, pkgname) {
  current <- utils::packageVersion("AssumpSure")
  latest <- "1.1.3" # hard-code my current CRAN release

  if (current < latest) {
    packageStartupMessage(
      sprintf(
        "A newer version of AssumpSure (%s) is available. You have %s.
Update with: install.packages('AssumpSure')",
        latest, current
      )
    )
  }
}

Try the AssumpSure package in your browser

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

AssumpSure documentation built on Nov. 12, 2025, 5:07 p.m.