#' Square Function
#'
#' @param x
#' a numerical value
#' @return the square of the input number
#' @export
#'
#' @examples
#' square(2)
square <- function(x) {
return(x^2)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.