R/echo.R

Defines functions echo

Documented in echo echo

#' Echo
#' 
#' This function echos whatever you give it.
#' 
#' @param echo A word or sentence to echo
#'
#' @export
#' @examples
#'
#' echo('This is a test')


echo = function(echo){
  return(echo)
}
sethwcunningham/newR documentation built on May 20, 2019, 3:27 p.m.