diff --git a/R/multiply.R b/R/multiply.R new file mode 100644 index 0000000..385d0b9 --- /dev/null +++ b/R/multiply.R @@ -0,0 +1,15 @@ +#' This is my multiplication function +#' +#' @param x this is the first value to multiply +#' @param y this is the second value to multiply +#' +#' @return This function returns the product of x and y +#' +#' @examples +#' multiply(3, 5) +#' +#' @export + +multiply <- function(x, y) { + return(x * y) +}