R/hello.R

#' Hello World
#'
#' THis is a hello world function
#'
#'
#' @param name string with name
#'
#' @return nothing
#'
#' @export
#'
#' @examples
#' hello("max")
#'
hello <- function(name) {
  print(paste("HelloR2", name))
}

print(paste("Hello", "te"))
maximilianmordig/helloRpkg documentation built on May 13, 2019, 10:28 a.m.