summaryrefslogtreecommitdiff
path: root/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'README.txt')
-rw-r--r--README.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/README.txt b/README.txt
new file mode 100644
index 0000000..8cef47c
--- /dev/null
+++ b/README.txt
@@ -0,0 +1,7 @@
+We only use one Control structure, and keep mutating it each
+iteration. We do this instead of just returning a new Control each
+time for 2 reasons:
+ - To simplify code; if we don't have any changes to make, we can just
+ leave a value alone, and it will stay. This can simplify things
+ with buttons.
+ - To avoid putting unnecessary pressure on the GC.