From 108cd8f76dba8ebb5393298371b8a60e993aec89 Mon Sep 17 00:00:00 2001 From: FatimahDonaldson Date: Mon, 10 Feb 2025 19:36:27 -0500 Subject: [PATCH] Add files via upload --- R/multiplication.R | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 R/multiplication.R diff --git a/R/multiplication.R b/R/multiplication.R new file mode 100644 index 0000000..2290a40 --- /dev/null +++ b/R/multiplication.R @@ -0,0 +1,16 @@ +#' This is my subtract function +#' +#' @param x this is the first value +#' @param y this is the second value to subtract +#' +#' @return This function returns the difference of x and y +#' +#' @examples +#' ## Start with something simple +#' subtract(1,1) +#' +#' ## Now something more difficult +#' subtract(49,60) +#' +#' @export +multiplication <- function(x,y){x*y}