R/AddTwoIntegers.R

Defines functions AddTwoIntegers

Documented in AddTwoIntegers

#' Adds two integers
#'
#' @param .integer_one First integer to add
#' @param .integer_two Second integer to add
#'
#' @return An integer, the sum of the inputs
#' @export
#'
#' @examples
#' AddTwoIntegers(13,17)
AddTwoIntegers <- function(.integer_one,.integer_two) {
  as.integer(.integer_one+.integer_two)
}
nivr/zealtools documentation built on March 19, 2022, 7:15 a.m.