R/start_message.R

Defines functions .onAttach HMSStartupMessage

HMSStartupMessage <- function() {
  msg <- "HMS - Hierarchic Memetic Strategy."
  return(msg)
}

.onAttach <- function(lib, pkg) {
  msg <- HMSStartupMessage()
  packageStartupMessage(msg)
  invisible()
}

Try the hmsr package in your browser

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

hmsr documentation built on Oct. 25, 2023, 9:07 a.m.