#' Adding two numbers
#'
#' more info here
#'
#' @param num1 First number
#' @param num2 Second number
#'
#' @return Does not return anything
#' @export
#'
#' @examples
#' test_print(3,5)
test_print <- function(num1, num2)
{
num3= num1 + num2
print(num3)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.