R/hello.R

#' Hello World Function
#'
#' @param name The name of the person
#'
#' @return the output from \code{\link{print}}
#' @export
#'
#' @examples
#'
#' hello('julia')
hello <- function( name ) {
  sprintf( "Hello, %s", name );
}
juliafum/testPkg documentation built on May 13, 2019, 3:01 a.m.