R/hello.R

Defines functions greeting hello

Documented in hello

#' Greeting
#' @description
#'
#' @return
#' @export
#'
#' @examples none.
hello <- function(){
  print("Hello, world!")
}

greeting <- function(){
  "How are you?"
}
raychiu135/mypackage documentation built on March 19, 2022, 7:19 a.m.