summaryrefslogtreecommitdiffstats
path: root/notes
diff options
context:
space:
mode:
Diffstat (limited to 'notes')
-rw-r--r--notes10
1 files changed, 10 insertions, 0 deletions
diff --git a/notes b/notes
new file mode 100644
index 0000000..8c4954c
--- /dev/null
+++ b/notes
@@ -0,0 +1,10 @@
+
+Can use 'const' in function parameters to indicate to the compiler that a
+variable will not be modified.
+
+The order of evaluation (function calls) in an expression is undefined. Eg:
+
+ push(pop() + pop()) is ok
+ push(pop() - pop()) is NOT ok
+
+