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