R/f.R

Defines functions f

Documented in f

##' 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 Caleb
##' @export
##' @examples
##' f(1,2)
f <- function(x, y) x + y
quranwu/GatorPKG3 documentation built on Nov. 5, 2019, 1:59 a.m.