Framework (
A-Z)
Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.
Name |
; (semicolon) |
Examples |
int a;
a = 30;
Serial.print(i);
|
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 for() structure. |
Syntax |
statement;
|
Parameters |
statement |
a single statement to execute |
|
Usage |
Application |
Related |
for()
|
Updated on July 07, 2011 11:08:52pm PDT