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