R/__roxygen_template.R

Defines functions adda

Documented in adda

#' Add together two numbers.
#'
#' @param x A number.
#' @param y A number.
#' @return The sum of \code{x} and \code{y}.
#' @examples
#' adda(1, 1)
#' adda(10, 1)
adda <- function(x, y) {
  x + y
}
aquaflakes/fjComm documentation built on April 17, 2024, 12:38 p.m.