f {Rdummypkg}R Documentation

Addition

Description

This function return the sum of the two given input.

Usage

f(x, y)

Arguments

x

x is a number.

y

y is a number.

Value

The value returned is the sum of the two number given as input.

Author(s)

Pierre-Yves Chibon

Examples

x <- 2
y <- 2
f(x,y)

## The function is currently defined as
function(x,y) x+y

[Package Rdummypkg version 1.0 Index]