#' 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)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.