R/hello.R

Defines functions hello

Documented in hello

#' Welcome message
#'
#' @return exit code of zero
#' @export hello
#'
#' @examples
#' hello()
hello <- function(){
  print('This is VBTree ver0.1.1')
  return(0)
}
CubicZebra/VBTree documentation built on Feb. 3, 2024, 3:42 p.m.