Guest User

Untitled

a guest
Jan 12th, 2018
68
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(...) deparse(substitute(...))
  2. f(abc)
  3. # "abc"
  4.  
  5. f(`abc def`)
  6. # "abc def"
  7. f(abc def)
  8. # Error: unexpected symbol in "f(abc def"
Add Comment
Please, Sign In to add comment