R/myfunction.R

#' @title myfunction
#' @description A hello world example
#' @param user character string with user's name
#' @return Character string greeting the user
#' @export
myfunction <- function(user){
    print(paste("Hello ", user, "!", sep = ''))
}
mariev/gitsandbox documentation built on May 6, 2019, 6:58 p.m.