#' test_add
#'
#' This function returns the sum of two numbers.
#' @param a first addend
#' @param b second addend
#' @keywords add
#' @export
#' @examples
#' test_add(2,3)
test_add <- function(a,b) {
return(a+b)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.