R/cube.R

#' Cubes a number
#'
#' @param x a number
#'
#' @return x^3
#'
#' @export

cube <- function(x) {
    x^3
}

Try the tlocoh package in your browser

Any scripts or data that you put into this service are public.

tlocoh documentation built on May 2, 2019, 5:27 p.m.