R/hello.R

Defines functions hello

Documented in hello

#' Square Number
#' Takes in the numeric value and squares it
#' @param x A numeric value to be squared
#' @return The square of the input 
#' @export 
hello <- function(d){
  return(d^2)
}
juliarobink/NSSQKearley documentation built on Feb. 25, 2021, 3:01 p.m.