R/aaa.R

Defines functions .onLoad

.onLoad <- function(libname, pkgname) {
  withr::with_preserve_seed({
    # create a new random permutation every time we load
    adjective_animal <<- sample(adjective_animal, size = length(adjective_animal))
  })
  invisible()
}

Try the reprex package in your browser

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

reprex documentation built on Aug. 17, 2022, 9:07 a.m.