inst/PackageInitiation/Roxygen/aFunction.R

#' Multiplies two numbers and returns the result
#' @export
#' @title Multiplies two numbers and returns the result
#' @name aFunction
#' @param a A number I want to multiply by something
#' @param b A multiplying constant
#' @return A number - the product of a and b
#' @author Paul Newcombe
aFunction <- function(a, b) {
  results <- a*b
  return(out)
}
pjnewcombe/Pmisc documentation built on March 26, 2020, 2:09 p.m.