#' Returns the sum of two numbers
#'
#' @param a Number one.
#' @param b Number two.
#'
#' @return Sum of two number.
#' @export
#'
#' @examples
#' library(rPackageTutorial)
#' add(1, 2)
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.