R/somme.R

#' 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
}
CeliaPontet/RLabkey documentation built on May 31, 2019, 1:52 p.m.