R/hello.R

Defines functions hello hi

Documented in hello

#' Creates histogram, boxplot and numeric summary
#' @export
#' @param x numeric variable

hi <- function(x){
  print("hi world!")
}
hello <- function(x){
  print("hello world!")
  hi(1)
}
whve/ds documentation built on March 20, 2022, 10:50 p.m.