#' Cube a number
#'
#' @description Cube a number
#'
#' @param number A numeric value
#'
#' @return A cubed value
#'
#' @examples
#'
#' cube(3)
#'
#' @export
cube <- function(number) {
number^3
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.