R/hello.R

#' Hello World
#' 
#' Basic hello world function to be called from the demo app
#' 
#' @export
#' @param myname your name. Required.
hello <- function(myname = ""){
  if(myname == ""){
    stop("Tell me your name!")
  }
  list(
    message = paste("hello the test result is", test_package())
  )
}
paulafortuna/StopPropagHateR documentation built on May 23, 2019, 7:04 p.m.