R/rpower.R

#' Square
#'
#' @param x
#'
#' @description This is used to square numbers with.
#'
#' @return
#' @export
#'
#' @examples
square <- function(x){
  return(x^2)
}
mitchell1walker/first documentation built on May 5, 2019, 7:10 a.m.