R/hello.R

Defines functions hello

Documented in hello

#' My hw foo
#'
#' @param x name
#'
#' @return output from \code{\link{print}}
#' @export
#'
#' @examples
#' hello('aritra)
#' \dontrun{
#' hello('lolo')
#' }
hello <- function(x) {
  print(paste0(x,"Hello, world!"))
}
pandalearnstocode/tidymmm documentation built on Nov. 4, 2019, 11:18 p.m.