R/hello.R

Defines functions hello what

Documented in hello what

#' My function
#'
#' @param x stuff to input
#'
#' @return same as input \code{\link{print}}
#' @export
#'
#' @examples
#' hello("John")
hello <- function(x) {
  print(x)
}

#' Title
#'
#' @param x useless
#'
#' @return still the same but other function name
#' @export
#'
#' @examples
#' #' hello("Hello sir")
what <- function(x) {
  print("mukodik")
}
adamborondy/blackmagic documentation built on Nov. 1, 2019, 8:47 p.m.