From 77a31dc0be8327cc1dba997b09baf8d1f2b05711 Mon Sep 17 00:00:00 2001 From: shivani-grover01 Date: Sun, 9 Feb 2025 23:37:02 -0500 Subject: [PATCH] Added author and multiply function --- R/multiply.R | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 R/multiply.R diff --git a/R/multiply.R b/R/multiply.R new file mode 100644 index 0000000..20b894b --- /dev/null +++ b/R/multiply.R @@ -0,0 +1,8 @@ +This fucntion multiple x with y +@param x 5 +@param y 2 +@return The product of x and y +multiply <-function(x,y){ +return(x*y) +} +