#' abc for R
#'
#' @param a quadratic coefficient
#' @param b linear coefficient
#' @param c constant
#' @return root
#' @export
abc <- function(a,b,c){
D <- b^2 - 4*a*c
(-b + c(1,-1) * sqrt(D)) / (2*a)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.