R/Hello.R

Defines functions whoAmI hello

Documented in hello whoAmI

#' Prints 'Hello, world!'.
#'
#' @return
#' @export
#'
#' @examples
#' loonR::hello()
hello <- function(){
  print("Hello, world!")
}


#' Introduce me
#'
#' @return
#' @export
#'
#' @examples
#'
whoAmI <- function(){
  cat("Bioinformatician in cancer biology and precision medicine
      Make the world beautiful!!!")
}
ProfessionalFarmer/loonR documentation built on Oct. 9, 2024, 9:56 p.m.