Files
processing4/mobile/web/reference/API/multilinecomment.xml
2005-01-27 06:48:42 +00:00

59 lines
1.0 KiB
XML

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>/* */ (multiline comment)</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web &amp; Application</usage>
<example>
<image></image>
<code>
/*
Draws two lines which divides the window
into four quadrants. First draws a horizonal
line and then the vertical line
*/
line(0, 50, 100, 50);
line(50, 0, 50, 100);
</code>
</example>
<description>
Explanatory notes embedded within the code. Comments are used to remind yourself and to inform others about the function of your program. Multiline comments are used for large text descriptions of code or to comment out chunks of code while debugging applications. Comments are ignored by the compiler
</description>
<syntax>
/*
<c>comment</c>
*/
</syntax>
<parameter>
<label>comment</label>
<description>any sequence of characters</description>
</parameter>
<returns></returns>
<related>
// (comment)
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>