R/hello_world.R

Defines functions hello_world_internal hello_world

Documented in hello_world hello_world_internal

#' Hello World
#' @param name name to say hello to
#' @returns character string saying hello
#' @editor Ellis Hughes
#' @editDate 2021-03-12
#' @export
hello_world <- function(name){
  paste("Hello,",name)
}
#' Hello World - internal
#' @param name name to say hello to
#' @returns character string saying hello
#' @editor Ellis Hughes
#' @editDate 2021-03-12
hello_world_internal <- function(name){
  paste("hello,",name)
}
FredHutch/RPackageValidationTutorial.04E02 documentation built on Dec. 17, 2021, 8:31 p.m.