R/hello.R

Defines functions hello

Documented in hello

#' Print a Welcome Message
#'
#' This function returns a welcome message for ClinTrialX.
#'
#' @return A character string containing the welcome message.
#' @export
#' @examples
#' hello()
hello <- function() {
  msg <- "Welcome to ClinTrialX!"
  Encoding(msg) <- "UTF-8"
  return(msg)   # Return the message for further use
}

Try the clintrialx package in your browser

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

clintrialx documentation built on April 3, 2025, 6:47 p.m.