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}