#' Jumuisha
#'
#' A function that takes in two numbers and add them.
#'
#' @param x First number
#' @param y Second number
#'
#' @return A summation of x and y
#'
#' @export
#'
#' @examples
#' jumuisha(10, 30)
jumuisha <- function(x, y){
x+y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.