From ff0971a0d9a1981954c5a2d2070c93ff9f06a9c4 Mon Sep 17 00:00:00 2001 From: Kemuk <55699179+Kemuk@users.noreply.github.com> Date: Fri, 28 Feb 2025 11:50:14 +0000 Subject: [PATCH] Code coverage working --- R/maths.R | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 R/maths.R diff --git a/R/maths.R b/R/maths.R new file mode 100644 index 0000000..ffdab05 --- /dev/null +++ b/R/maths.R @@ -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) +} \ No newline at end of file