Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Authors@R:
role = c("aut", "cre"),
email = "wevanjohnson@gmail.com",
comment = c(ORCID = "YOUR-ORCID-ID"))
person(given = "Nat",
family = "Lim",
role = c("contributor"),
email = "nat.lim@rutgers.edu",
comment = c("yay hopefully this works"))
Description: This is my new package to do addition, subtraction, and multiplication
License: Artistic 2.0
Encoding: UTF-8
Expand Down
6 changes: 6 additions & 0 deletions R/multiply.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# This is a multiplication function R code
# Any 2 numbers filled in for (x,y)
# will be multiplied for a new result
# multiply(2,3) in the terminal will return the answer
# in this case, 6
multiply <- function(x,y){x*y}