From 5b13fc4eb541c6989bd2a42c607790c01e7dbc87 Mon Sep 17 00:00:00 2001 From: Paul Lee Date: Fri, 6 Feb 2026 17:54:25 -0500 Subject: [PATCH 1/2] adding Paul Lee as an author --- DESCRIPTION | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/DESCRIPTION b/DESCRIPTION index a5e6300..142a397 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -7,6 +7,11 @@ Authors@R: role = c("aut", "cre"), email = "wevanjohnson@gmail.com", comment = c(ORCID = "YOUR-ORCID-ID")) + person(given = "Paul", + family = "Lee" + role = c("aut", "cre"), + email = "pjl165@gsbs.rutgers.edu", + comment = c(ORCID = "YOUR-ORCID-ID")) Description: This is my new package to do addition, subtraction, and multiplication License: Artistic 2.0 Encoding: UTF-8 From 27b821668ffc1b7b08e60d64516d81b6760a3177 Mon Sep 17 00:00:00 2001 From: Paul Lee Date: Fri, 6 Feb 2026 18:09:21 -0500 Subject: [PATCH 2/2] Add multiplication function --- R/multiply.R | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 R/multiply.R diff --git a/R/multiply.R b/R/multiply.R new file mode 100644 index 0000000..4fb8f57 --- /dev/null +++ b/R/multiply.R @@ -0,0 +1,17 @@ +#' This is my multiplication function +#' +#' @param x this is the first value to multiply +#' @param y this is the second value to multiply +#' +#' @return This function returns the product of x and y +#' +#' @examples +#' ## Start with something simple +#' product(1,1) +#' +#' ## Now something more difficult +#' product(49,60) +#' +#' @export + +product <- function(x,y){x*y} \ No newline at end of file