R/Add.R

Defines functions Add

Documented in Add

#' Add two numbers
#' 
#' Takes in two numbers to add up
#' @param x is a numeric value
#' @param y is a numeric value
#' @return The sum of the 2 inputs
#' @export

Add <- function(x, y){
  return(x + y)
}
JoshuaTian-McGill/Myfirstpackage documentation built on Jan. 6, 2021, 12:19 a.m.