A test package built to add two numbers and find the multiple of a given number
Installation you can install the package from Github with:
#install.packages("devtools")
devtools::install_github("atitparajuli2020/testingpackage")
Example
This is an example about how to run this package
library(testingpackage)
Add two numbers
add (2, 3)
5
Multiple of a given number (upto 10 multiple)
multiple (5)
5 10 15 20 25 30 35 40 45 50