#' Adding function
#'@description add numbers
#'
#' @param a this should be a float or an integer
#' @param b
#'
#' @return Return is a float or an integer
#' @export
#'
#' @examples
#' adding(1,2)
#'
adding = function(a,b){
return(a+b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.