R/f.R

##' Add up two numbers (Description)
##' 
##' We want to add up two numbers, blalala... (Details)
##' @title add two numbers
##' @param x first number
##' @param y second number
##' @return sum of two numbers
##' @author Seven
##' @export
##' @examples 
##' f(1, 2)
 f <- function(x, y) x + y
yifan9393/GatorPKG documentation built on May 8, 2019, 12:59 p.m.