4 lines
66 B
R
4 lines
66 B
R
|
|
cube <- function(x) x*x*x
|
||
|
|
elements <- 1:5
|
||
|
|
cubes <- cube(elements)
|