R/sumR.R

#' @name sumR
#' @rdname sumR
#'
#' @title Addition of two numbers
#'
#' @description This package contains several functions to compute the addition
#' of two numbers.
#'
#' @param x A number.
#' @param y A number.
#'
#' @return The addition of \code{x} and \code{y}.
#' 
#' @examples
#' sumR(1, 2)
#'
#' @export
sumR <- function(x, y) {
  return(x + y)
}
becarioprecario/sumR documentation built on May 19, 2019, 8:21 a.m.