R/hello.R

Defines functions hello

Documented in hello

#' @title Word
#' @description print a wird
#' @param x a word
#' @return a word !
#' @examples
#' hello(x="ciao")
#'
#' @export
hello <- function(x) {
  print(paste(x,"!"))
}
abrozzi/microbio documentation built on Feb. 8, 2021, 11:34 a.m.