R/R.R

Defines functions R

Documented in R

#' R
#'
#' A silly function in a silly package.
#'
#' R speaks to us and tells us where it lives.
#' @return character string path
#' @export
#'
#' @examples
#' R()
R <- function() {
  print("My name is R.")
  file.path(R.home(component = "bin"), "R")
}
mdsumner/package documentation built on May 22, 2019, 5:04 p.m.