Similar to perl's qw(), however, in R spaces between args in function call
always cause an error, so qw(foo bar) wouldn't work. Workaround is either a
single string split at spaces, or unquoted elements, separated by commas.
Details
Took inspiration from stackoverflow/qw and github/Jarrett Byrnes