R/hello.R

Defines functions hello

Documented in hello

#' A hello world function
#'
#' @description something something
#' @param x a person name to say hello
#'
#' @return output from \code{\link{print}}
#' @export
#'
#' @import magrittr
#'
#' @examples
#' hello('andrea')
#' \dontrun{
#' hello('fede')}
#'
hello <- function(x) {
  x22 <- x %>% as.character()
  return(x22)
  # print(paste0('hello', x))
}
andreaczhang/ehrtransfer documentation built on Dec. 19, 2021, 2:35 a.m.