notebook.community
Edit and run
In [ ]: pi
pi
In [ ]: Square <- function(x) { return(x^2) } print(Square(4)) print(Square(x=4)) # same thing
Square <- function(x) { return(x^2) } print(Square(4)) print(Square(x=4)) # same thing
In [ ]: