#' Title jumuisha
#'
#' Description: Takes in two numbers and adds them
#'
#' @param x First number
#' @param y Second number
#'
#' @return sum of x and y
#' @export
#'
#' @examples
#'
#' jumuisha(5, 7)
#'
jumuisha <- function(x,y){
x+y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.