#' Return the difference of two numbers
#'
#' @param a Number one
#' @param b Number two
#'
#' @return Difference of two numbers
#' @export
#'
#' @examples
#' library(newPackage)
#' minus(3, 1)
minus <- function(a, b) {
a - b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.