-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathcomment.xml
More file actions
executable file
·54 lines (34 loc) · 1.02 KB
/
comment.xml
File metadata and controls
executable file
·54 lines (34 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>// (comment)</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
// Draws two lines which divides the window
// into four quadrants
line(0, 50, 100, 50); // Draw the horizontal line
line(50, 0, 50, 100); // Draw the vertical line
]]></code>
</example>
<description><![CDATA[
Explanatory notes embedded within the code. Comments are used to remind yourself and to inform others about the details of the code. Single-line comments are signified with the two forward slash characters. Comments are ignored by the compiler.
]]></description>
<syntax>
// <c>comment</c>
</syntax>
<parameter>
<label>comment</label>
<description><![CDATA[any sequence of characters]]></description>
</parameter>
<returns></returns>
<related>
/* */ (multiline comment)
/** */ (doc comment)
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>