You can include comments in multi-line commands using command substitution like this:
echo \ `# comment` \ -n hello
or using the : no-op command:
:
echo \ $( : # comment ) \ -n hello