#' Simple Function
#'
#' @param x value
#' @param y value
#'
#' @return array of x,y
#' @export
#'
#' @examples
#' x <- 1
#' y <- 2
#' simple(x, y)
#'
simple <- function(x, y){
return(c(x,y))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.