Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Tutorials / Mark_Polishook_tutorial / 03_Comments.schelp
blob3c9be1d8f471646c232c61f2a0e5640abad1f74d
1 title:: 03_Comments
2 summary:: Mark Polishook tutorial
3 categories:: Tutorials>Mark_Polishook_tutorial
4 related:: Tutorials/Mark_Polishook_tutorial/00_Introductory_tutorial
6 section::Comments
8 Comments are descriptive remarks that are meant to be read by humans but ignored by computers. Programmers use comments to annotate how code works or what it does. It's also the case that some find it helpful to write programs by first notating comments and then filling in matching code.
10 ////////////////////////////////////////////////////////////////////////////////////////////////////
12 To write a comment in SuperCollider, either precede text with
14 code::
18 as in
20 code::
21 // Everything up to the end of the line is a comment
24 or place text on one or more lines between
26 code::
27 /* and */
30 as in
32 code::
35 This
38 comment
40  */
43 If (when) evaluated, a comment will return nil, which is the value SuperCollider uses for unitialized data.
45 ////////////////////////////////////////////////////////////////////////////////////////////////////
47 Use Format->Syntax Colorize (or cmd-') to syntax-colorize comments.
49 ////////////////////////////////////////////////////////////////////////////////////////////////////
51 go to link::Tutorials/Mark_Polishook_tutorial/04_Help::