R/zzz.R

Defines functions .onAttach

.onAttach = function(libname, pkgname)
{
    temp = packageDescription("lazygreedy")
    msg = paste(temp$Package, ": ", temp$Title, "\n", "Version ", temp$Version,
                " created on ", temp$Date, ".\n", sep = "")
    msg = paste(msg, "copyright (c) 2020, Bokgyeong Kang, John Hughes, Quirijn W. Bouts, Alex P. ten Brink, and Kevin Buchin\n",
                sep = "")
    msg = paste(msg, 'For citation information, type citation("lazygreedy").\n', sep = "")
    msg = paste(msg, 'Type help(package = lazygreedy) to get started.\n', sep = "")
    packageStartupMessage(msg)
}

Try the lazygreedy package in your browser

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

lazygreedy documentation built on Jan. 13, 2021, 6:53 a.m.