R/respect.R

#' A function to show respect
#'
#' @param x input string
#'
#' @return input string preceeded by "I respect"
#' @export
#'
#' @examples
#' respect::respect('trees')
respect <- function(x) {
  print(paste("I respect", x))
}
marskar/respect documentation built on May 17, 2019, 3:12 a.m.