Nothing
.onAttach <- function(libname, pkgname) {
if (interactive()) {
packageStartupMessage(
"tvcure - Copyright (C) 2025 - Philippe LAMBERT\n",
"This program comes with ABSOLUTELY NO WARRANTY; for details type `show_w()'.\n",
"This is free software, and you are welcome to redistribute it\n",
"under certain conditions; type `show_c()' for details."
)
}
}
#' Show Copyright Information
#'
#' Displays the copyright information for the package in interactive mode.
#'
#' @return No return value, called for its side effects of printing a message.
#' @export
show_c <- function() {
message("This program is free software; you can redistribute it under certain conditions.")
message("For details, see the General Public License (GPL-3).\n")
}
#' Show Warranty Disclaimer
#'
#' Displays a notice that the program comes with absolutely no warranty.
#'
#' @return No return value, called for its side effects of printing a message.
#' @export
show_w <- function() {
message("This program comes with ABSOLUTELY NO WARRANTY.")
message("For details, see the General Public License (GPL-3).\n")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.