Initial mobile website check in

This commit is contained in:
francisli
2005-01-27 06:48:42 +00:00
parent dd0a7090b1
commit cce150ac8c
157 changed files with 10493 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>; (semicolon)</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web &amp; Application</usage>
<example>
<image></image>
<code>
int a; // Declaration statement
a = 30; // Assignment statement
println(i); // Function statement
</code>
</example>
<description>
A statement terminator which separates elements of the program. A statement is a complete instruction to the computer and the semicolon is used to separate instructions (this is similar to the period "." in written English). Semicolons are also used to separate the different elements of a <b>for()</b> structure.
</description>
<syntax>
<c>statement</c>;
</syntax>
<parameter>
<label>statement</label>
<description>a single statement to execute</description>
</parameter>
<returns></returns>
<related>
for()
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>