R/0hello.R

Defines functions hello

Documented in hello

####################################################################################################################################
################################## hello ###########################################################################################
# >>
#' @title My Hello World function
#' @description This function simply prints **Hello World**.
#' @param x some name
#' @return The output from [`print`]
#' @examples
#' hello("Shashank")
#' \dontrun{
#' hello("shashank")
#' }
#' @export
hello <- function(x) {
  print( paste0("Hello ", x, ", this is the R world!") )
}
# <<
################################## hello ###########################################################################################
####################################################################################################################################
ShashankKumbhare/paramonteR documentation built on April 25, 2022, 12:08 a.m.