#' jumuisha
#'
#' This function takes in two numbers and adds them.
#'
#' @param x First number
#' @param y Second number
#'
#' @return Summation of x and y
#'
#' @export
#'
#' @examples
#' jumuisha(300, 700)
jumuisha <- function(x, y){
x + y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.