R/hello.R

Defines functions hello

Documented in hello

#' My hello world test function
#'
#' @param x word that gets concatenate with hello...
#'
#' @return output form print -< two pasted strings
#' @export
#'
hello <- function(x) {
  print(paste("Hello, world! ", x))
}
NiklasCarlos1994/batchanalytics documentation built on Dec. 17, 2021, 5:25 a.m.