R/hello.R

Defines functions hello

Documented in hello

#' Print hello before string
#'
#' @param s input string
#'
#' @return string
#'
#' @export
#'
hello <- function(s) {
  print(glue::glue("Hello {s}"))
}
vicvolodina93/helloworld documentation built on May 10, 2020, 12:37 a.m.