diff --git a/R/multiplication.R b/R/multiplication.R new file mode 100644 index 0000000..2018d30 --- /dev/null +++ b/R/multiplication.R @@ -0,0 +1,17 @@ +#' This is a multiplication function. +#' +#' @param x this is the first value to multiply +#' @ param y this is the second valume to multiply +#' +#' @return This function returns the product of x and y +#' +#' @examples +#' ## Start with something simple +#' mult(1,2) +#' +#' ## Now something more difficult +#' mult(123,321) +#' +#' @export + +mult <- function(x, y){x * y}