#' @export
foo1 <- function() {
1
}
#' @export
foo2 <- function(x) {
x
}
#' @export
foo3 <- function(x, y) {
x+y
}
#' @export
foo4 <- function(...) {
list(...)
}
#' @export
foo5 <- function(x, y, ...) {
c(x, y, list(...))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.