R/test.R

#' Sums two numbers
#'
#' This function sums tow input numbers.
#' @param x,y The two numbers.
#' @return The sum of the two numbers.
#' @export
#' @examples
#' sumNum(1,2)

sumNum <- function(x,y) {
x+y
}
galdino/sumPack documentation built on May 9, 2019, 5:02 a.m.