Returns a FoscLilypondComment.
A LilyPond code comment
| formatSlot | Format slot of LilyPond comment. |
| string | Gets string. |
| str | Gets string representation of LilyPond comment. |
Example
a = FoscNote(60, 1/4);
m = FoscLilypondComment("a comment");
a.attach(m);
a.format;% a comment
c'4Format slot of LilyPond comment.
Example
m = FoscLilypondComment("a comment");
m.formatSlot.postln;'before'Gets string.
Example
m = FoscLilypondComment("a comment");
m.string.postln;a commentGets string representation of LilyPond comment.
Example
m = FoscLilypondComment("a comment");
m.str;% a comment