R/hello.R

Defines functions hello

Documented in hello

#' Basic hello, world example.
#'
#' In terms of a more detailed explanation,
#' this function does some really cool hello-saying.
#'
#' @param phrase The phrase to replace "World" with?
#'
#' @examples
#' hello()
#' hello('world')
#'
#' @export
hello = function(phrase = "World") {
    print(sprintf('Hello, %s', phrase))
}
dbGaPdb/dbGaPdb documentation built on May 24, 2019, 2:04 a.m.