aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/semicolon.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-20 06:46:52 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-10-20 06:46:52 -0400
commit22ff1db8a76c7047b61a424ae1fa5f43697fcb34 (patch)
treebf722c8a5a6bd40e0b33fc4a425e0e5b8b9f4216 /docs/source/arduino/semicolon.rst
parentbac6548fe90b0721e191d68df2677beb4b15f60a (diff)
downloadlibrambutan-22ff1db8a76c7047b61a424ae1fa5f43697fcb34.tar.gz
librambutan-22ff1db8a76c7047b61a424ae1fa5f43697fcb34.zip
initial check-in of arduino docs in RST format (converted using wget+pandoc)
Diffstat (limited to 'docs/source/arduino/semicolon.rst')
-rw-r--r--docs/source/arduino/semicolon.rst27
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/source/arduino/semicolon.rst b/docs/source/arduino/semicolon.rst
new file mode 100644
index 0000000..b3cc8c4
--- /dev/null
+++ b/docs/source/arduino/semicolon.rst
@@ -0,0 +1,27 @@
+.. _arduino-semicolon:
+
+; semicolon
+===========
+
+Used to end a statement.
+
+
+
+Example
+~~~~~~~
+
+::
+
+ int a = 13;
+
+Tip
+---
+
+Forgetting to end a line in a semicolon will result in a compiler
+error. The error text may be obvious, and refer to a missing
+semicolon, or it may not. If an impenetrable or seemingly illogical
+compiler error comes up, one of the first things to check is a
+missing semicolon, in the immediate vicinity, preceding the line at
+which the compiler complained.
+
+