#_ comments out the form it precedes. You do not need to surround it with an extra pair of parentheses.
Didn't know about the difference in behaviour with regard to invalid code. Thanks for that.
EDIT: Leaving this here for context. I'd missed the fact that they weren't all enclosed in a single form to begin with. Parent's solution is correct in light of that.
What your parent meant is that your #_ only comments out the first form, not the other two. Surrounding them all with an extra pair of parentheses groups them into a single form.
Yup you're right! I made the same mistake as okal and assumed everything is in one form! Also, I didn't know about the 'invalid' code part - so thanks for that :)
Didn't know about the difference in behaviour with regard to invalid code. Thanks for that.
EDIT: Leaving this here for context. I'd missed the fact that they weren't all enclosed in a single form to begin with. Parent's solution is correct in light of that.