R/myfunc1.R

Defines functions myfunc1

Documented in myfunc1

#' Returns the value 1
#'
#' @param ... You can literally put anything in; it doesn't affect the output
#'
#' @return The integer 1
#' @export
#'
#' @examples
#' myfunc1("thirteen")
myfunc1 <- function(...) {
  return(as.integer(1))
}
dyavorsky/HowToPkg documentation built on Feb. 2, 2024, 8:24 p.m.