#' Function for summing 2 numbers
#'
#' @import base
#' @importFrom base agrep
#' @param num1 First number to sum. Default is 3.
#' @param num2 Second number to sum. Default is 4.
#' @return Sum of num1 and num2
#' @export
#' @details Function for summing two numbers
#' @examples sum2(num1=3, num2=5)
sum2 <- function(num1=3, num2=5) {
num1 + num2
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.