repo.or.cz
/
supercollider.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
CheckBadValues should run on the first sample as well
[supercollider.git]
/
HelpSource
/
Reference
/
Comments.schelp
blob
1986b574a78be5d8db1d7f8a7cddec7d954d95e4
1
title:: Comments
2
categories:: Language
3
summary:: source-code comments
4
5
Comments begin with code:://:: and go until the end of the line. Comments can also be delimited with code::/*:: and code::*/::.
6
7
Examples:
8
code::
9
// single line comment
10
11
/*
12
multi
13
line
14
comment
15
*/
16
17
/* Unlike C, you can have /* nested */ comments */
18
::
19