SCDoc: Use proper static string constants instead of comparing string literals.
[supercollider.git] / HelpSource / Reference / Comments.schelp
blob8749fbed8991db2c6e2752295b1acb699bafb2fd
1 title:: Comments
2 categories:: Language
3 summary:: source-code comments
5 Comments begin with code:://:: and go until the end of the line. Comments can also be delimited with code::/*:: and code::*/::.
7 Examples:
8 code::
9 // single line comment
12         multi
13         line
14         comment
17 /* Unlike C, you can have /* nested */ comments */