In [1]:
x <- 3
x


3

In [4]:
square <- function(x){
    return(x**2);
}
square(3);


9

In [ ]: