#' prs function
#'
#' @param x parameter
#' @param y parameter
#'
#' @return Something
#' @export
#'
#' @examples
#'
#' x <- 1:10
#' y <- NULL
#' prs(x, y)
prs <- function(x, y) {
for (i in x) {
y <- c(y, i)
}
y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.