R/HelloSnatch.r

Defines functions helloSnatch

Documented in helloSnatch

#' Greeting to be written after successfully loading package
#'
#' @param x character value, optional argument
#' @export
#' @examples
#' helloSnatch('... hopefully')
helloSnatch <- function(x=''){
   chr <- 'SASnatch succesfully loaded. You can now use SAS naturally ... or knitrally'
   if(x != '') chr <- paste(chr,x)
   print(chr)
}
imouzon/SASnatch documentation built on May 18, 2019, 4:45 a.m.