#' It use to square a value
#'
#' @param x A numeric value is calculated
#'
#' @return The square of the input
#' @export
#'
#' @examples square(10)
square<-function(x){
return(x^2)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.