#' A times B
#'
#' @param a,b A number
#'
#' @return a * b
#' @export
#'
#' @examples
#' times(1, 2)
times <- function(a ,b) {
a * b
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.