From b4cc7915a92d31ff659ee9fced0a2ce721ce7a0f Mon Sep 17 00:00:00 2001 From: Ishaqm17 Date: Sun, 9 Feb 2025 22:49:00 -0500 Subject: [PATCH] Create Multiply.R --- R/Multiply.R | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 R/Multiply.R diff --git a/R/Multiply.R b/R/Multiply.R new file mode 100644 index 0000000..413fea0 --- /dev/null +++ b/R/Multiply.R @@ -0,0 +1,16 @@ +#' This is my multiply function +#' +#' @param x this is the first value +#' @param y this is the second value to multiply +#' +#' @return This function returns the difference of x and y +#' +#' @examples +#' ## Start with something simple +#' multiply(1,1) +#' +#' ## Now something more difficult +#' multiply(55,73) +#' +#' @export +multiply <- function(x,y){x*y}