R/hello.R

Defines functions hello

Documented in hello

#' Hello, world!
#'
#' This is an example function named 'hello'
#' which prints 'Hello, world!'.
#'
#' @param message texto para impressao. default is empty.
#'
#' @return nada
#' @export
#'
#' @examples
#' hello()
#' hello("Hugo")
#' \dontrun{
#'   ler_varios_csv("caminho-ate-pasta")
#' }

hello <- function(message="") {
  tmp <- sprintf("Hello, %s, world!",message)
  print(tmp)
  return(tmp)
}
hugoharada/package00 documentation built on Jan. 31, 2020, 12:24 a.m.