R/Multiply5.R

#' Multiply by 5
#'
#' Takes in any numeric value and multiples it by 5
#' @param x a numeric value to be multiplied by 5
#' @return a number 5 times larger than the number submitted
#' @export
multiply5 <- function(x){
  x*5
}
mhood115/MikeHoodFinal documentation built on May 29, 2019, 11:05 p.m.