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