R/add_two.R

Defines functions add_two

Documented in add_two

#' Title
#'
#' @param a First number to add
#' @param b Second number to add
#'
#' @return The sum of numbers a and b
#' @export
#'
#' @examples
#' add_two(1, 4)
add_two <- function(a, b) {
    a + b
}
durandsinclair/myThirdPackage documentation built on Oct. 10, 2020, 12:43 a.m.