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}