Skip to content

Commit

Permalink
Code coverage working
Browse files Browse the repository at this point in the history
  • Loading branch information
Kemuk committed Feb 28, 2025
1 parent ca0fa60 commit ff0971a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions R/maths.R
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
addition <-function(x,y) {
return(x+y)
}

multiply <-function(x,y) {
return (x*y)
}

divide <- function(x,y) {
return (x/y)
}

0 comments on commit ff0971a

Please sign in to comment.