Guest User

Untitled

a guest
Apr 25th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. f = function(a, b){
  2. c = rep(0, 3)
  3. cat('c=', c, 'n')
  4. d = c[b]
  5. cat('d=', d, 'n')
  6. return(list(a=a, d = d))
  7. }
  8. f(a = 1)
Add Comment
Please, Sign In to add comment