#' jumla
#' takes in two numbers, and adds them.
#'
#' @param x The first argument
#'
#' @param y The second argument
#'
#' @return a value that is the summation of x and y
#' @export
#'
#' @examples
#' summation <- jumla(10,20)
#'
jumla <- function(x,y){
x + y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.