Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. f(345,x=234,randomcharacters()+34-321==1)
  2. [1] "f(345,x=234,randomcharacters()+34-321==1)"
  3.  
  4. g <- function(...) callstr(...)
  5. g(345,x=234,randomcharacters()+34-321==1)
  6. [1] "g(345,x=234,randomcharacters()+34-321==1)"
  7.  
  8. g <- function(...)deparse(sys.call())
  9.  
  10. g(345,x=234,randomcharacters()+34-321==1)
  11. # [1] "g(345, x = 234, randomcharacters() + 34 - 321 == 1)"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement