R/g.R

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