#' @title A function for subtracting
#'
#' @description A really good subtracting function.
#' Perhaps the best function ever!
#'
#' A work of pure genius.
#' @param x a number
#' @param y another number
#' @return a number
#' @export
#' @examples
#' subtract(5, 10)
#' ## Can also use negative numbers
#' subtract(-5, 10)
#' @export
subtract = function(x, y) {
return(x - y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.