aboutsummaryrefslogtreecommitdiffstats
path: root/docs/source/arduino/assignment.rst
diff options
context:
space:
mode:
authorMarti Bolivar <mbolivar@mit.edu>2010-10-25 21:15:28 -0400
committerMarti Bolivar <mbolivar@mit.edu>2010-11-17 12:44:28 -0500
commit95783b750fda95f5f4c1fac00ab24da03b31b517 (patch)
tree2b0bf89c101aa58af5796fbe76c7ec98eebbb0a5 /docs/source/arduino/assignment.rst
parent3a9a119e9a8ce72c0e1b8fa4d3904bdf84ce355c (diff)
downloadlibrambutan-95783b750fda95f5f4c1fac00ab24da03b31b517.tar.gz
librambutan-95783b750fda95f5f4c1fac00ab24da03b31b517.zip
arduino language reference nearing completion, properly CC-BY-SA 3.0 attributed
Diffstat (limited to 'docs/source/arduino/assignment.rst')
-rw-r--r--docs/source/arduino/assignment.rst9
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/source/arduino/assignment.rst b/docs/source/arduino/assignment.rst
index 1c790bb..21e90e9 100644
--- a/docs/source/arduino/assignment.rst
+++ b/docs/source/arduino/assignment.rst
@@ -8,7 +8,6 @@
Stores the value to the right of the equal sign in the variable to
the left of the equal sign.
-
The single equal sign in the C++ programming language is called the
assignment operator. It has a different meaning than in algebra
class, where it indicated an equation or equality. The assignment
@@ -36,13 +35,17 @@ needs to be able to hold the value stored in it. If it is not large
enough to hold a value, the value stored in the variable will be
incorrect.
-
-
Don't confuse the assignment operator [ = ] (single equal sign)
with the comparison operator [ == ] (double equal signs), which
evaluates whether two expressions are equal.
+Arduino Compatibility
+---------------------
+
+Assignments on the Maple are identical to those on Arduino.
+
+
See Also
--------