notebook.community
Edit and run
In [1]: x <- 3 x
x <- 3 x
3
In [4]: square <- function(x){ return(x**2); } square(3);
square <- function(x){ return(x**2); } square(3);
9
In [ ]: