cube
cube(x)
Compute the cube of a value. The cube of x is x * x * x.
Try it yourself:
$1 | cube(2)
| |
$2 | 2^3
| |
$3 | 2 * 2 * 2
|
Compute the cube of a value. The cube of x is x * x * x.
Try it yourself:
$1 | cube(2)
| |
$2 | 2^3
| |
$3 | 2 * 2 * 2
|