diff options
Diffstat (limited to 'source/arduino/assignment.rst')
-rw-r--r-- | source/arduino/assignment.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source/arduino/assignment.rst b/source/arduino/assignment.rst index 1c790bb..21e90e9 100644 --- a/source/arduino/assignment.rst +++ b/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 -------- |