# NOT RUN {
x <- list("a")
# It makes sense for ll() to accept lists literally, so it doesn't
# automatically splice them:
ll(x)
# But you can splice lists explicitly:
y <- splice(x)
ll(y)
# Or with the syntactic shortcut:
ll(!!! x)
# }
Run the code above in your browser using DataLab