I (sort of) already know the answer to this question. But I figured it is one that gets asked so frequently on the R Users list, that one solid good answer belongs on SO. To the best of my knowledge there is no multiline comment functionality in R. So, do you have any good workarounds?
While quite a bit of work in R usually involves interactive sessions (which casts doubt on the need for multiline comments), there are times when I've had to send scripts to colleagues and classmates, much of which involves nontrivial blocks of code. And for people coming from other languages it is a fairly natural question. So.
In the past I've used quotes. Since strings support linebreaks, running an R script with
"
Here's my multiline comment.
"
a <- 10
rocknroll.lm <- lm(blah blah blah)
...
works fine. Do y'all have better solutions?