#' Somme
#'
#' @param x a number
#' @param y a number
#'
#' @return a number
#' @export
#'
#' @examples
#' somme(1,1)
#' somme(1,2)
somme <- function(x,y){
# Je press ctrl + alt + shit + R
x+y
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.