2 summary:: Mark Polishook tutorial
3 categories:: Tutorials>Mark_Polishook_tutorial
4 related:: Tutorials/Mark_Polishook_tutorial/00_Introductory_tutorial
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
21 // Everything up to the end of the line is a comment
24 or place text on one or more lines between
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::