#' Square Root Function
#'
#' @param x
#' a numerical value that is 0 or positive
#' @return the square root of the input number
#' @export
#'
#' @examples
#' sqr_root(4)
sqr_root <- function(x) {
x^0.5
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.