Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. f <- function (x,y=1) { x + y/z }
  2. z <- 2
  3. x <- f(3)
  4. y <- f(x,z)
  5. z<- f(y,x)
  6. x <- f(1)
  7. print(x)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement