R/toy_function.R

Defines functions toy_function

Documented in toy_function

#' A Super simple Function
#'
#' @param x,y  two values that we will add together
#' @return the sum of x and y
#' @examples
#' toy_function(2, 3)
#' @export

toy_function <- function(x, y){ x+y }
rrchaudhari/gcc2019live documentation built on Nov. 5, 2019, 4:16 a.m.