#' Soma dois numeros
#'
#' recebe um numero x e outro y e retorna a soma de x e y
#'
#' @param x primeiro argumento
#' @param y segundo argumento
#'
#' @return a soma de dois numeros
#'
#' @export
soma <- function (x,y) {
paste(x,y)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.