R/test.R

Defines functions test4 test3 test2 test

Documented in test test2 test3 test4

#' Test function
#'
#' @export
#' @examples
#'
#' test()
test <- function() {
  print("pof")
}
#' Test function
#'
#' @export
#' @examples
#'
#' test2()
test2 <- function() {
  print("pof")
}

#' Test function
#'
#' @export
#' @examples
#'
#' test3()
test3 <- function() {
  print("pof")
}

#' Test function
#'
#' @export
#' @examples
#'
#' test4()
test4 <- function() {
  print("pof")
}
ropensci-org/rotemplate documentation built on Feb. 7, 2025, 12:10 a.m.