diff --git a/DESCRIPTION b/DESCRIPTION index a5e6300..49971c8 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,12 +1,19 @@ Package: my.package Title: This is my first R package Version: 0.0.0.9000 -Authors@R: +Authors@R: + c( person(given = "Evan", family = "Johnson", role = c("aut", "cre"), email = "wevanjohnson@gmail.com", - comment = c(ORCID = "YOUR-ORCID-ID")) + comment = c(ORCID = "YOUR-ORCID-ID")), + + person(given = "Hunter-Lynne", + family = "Wesely", + role = c("aut"), + email = "hw764@gsbs.rutgers.edu"), + ) Description: This is my new package to do addition, subtraction, and multiplication License: Artistic 2.0 Encoding: UTF-8 diff --git a/R/multiply.R b/R/multiply.R new file mode 100644 index 0000000..21a90c5 --- /dev/null +++ b/R/multiply.R @@ -0,0 +1,3 @@ +multiply <- function(x,y) { + x * y +}