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