R/simple.R

Defines functions simple

Documented in simple

#' Simple Function
#'
#' @param x value
#' @param y value
#'
#' @return array of x,y
#' @export
#'
#' @examples
#' x <- 1
#' y <- 2
#' simple(x, y)
#'
simple <- function(x, y){
  return(c(x,y))
}
christopherkenny/dependencycheckR documentation built on Sept. 6, 2020, 12:06 a.m.