#' Multiply two numbers
#'
#' @param a A number
#' @param b A number
#' @return The product of \code{a} and \code{b}
#' @export
#' @examples
#' multiplyr(2, 5)
#' multiplyr(4, 8)
multiplyr <- function(a, b){
a * b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.