#' difference finder
#'
#' @param a numerical input
#' @param b numerical input
#'
#' @return numerical value
#' @export
#'
#' @examples dif_finder(4,2) = 2
dif_finder <- function (a,b){
diffrence <- a/b
diffrence
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.