CheckBadValues should run on the first sample as well
[supercollider.git] / HelpSource / Reference / Comments.schelp
blob1986b574a78be5d8db1d7f8a7cddec7d954d95e4
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 */