R/subtract_two.R

Defines functions subtract_two

Documented in subtract_two

#' Title
#'
#' @param first_number The larger number we're subtracting from
#' @param second_number The smaller number we're subtracting
#'
#' @return The subtraction of first_number - second_number
#' @export
#'
#' @examples
#' subtract_two(10, 6)

subtract_two <- function(first_number, second_number) {
    first_number - second_number
}
durandsinclair/mySecondPackage documentation built on Oct. 10, 2020, 12:43 a.m.