mysum: Sum of Two Numbers

Description Usage Arguments Examples

Description

Adds two numbers and return their results.

Usage

1
2
3
4
mysum(a, b)
returns the sum of a and b.

mysum(4,6) returns 10

Arguments

a
b

Examples

1
2
3
4
5
6
7
8
9
##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--	or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function (a, b)
{
    return(a + b)
  }

Veera1789/myfirstRPackage documentation built on May 9, 2019, 9:43 p.m.