summaryrefslogtreecommitdiff
path: root/readme.org
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-12-01 11:27:04 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-12-01 11:27:04 +0200
commitecfa5bb0f3caf66f05a7b99d204978496dae4bd7 (patch)
tree940f40121c33e2c42dee6c97acf364eadc85570f /readme.org
parent34bffc49705fb31f947ad0f2f45494dc9472e81b (diff)
Dressed day 1 up as a cli app
Diffstat (limited to 'readme.org')
-rw-r--r--readme.org7
1 files changed, 7 insertions, 0 deletions
diff --git a/readme.org b/readme.org
index c1923ac..97f5511 100644
--- a/readme.org
+++ b/readme.org
@@ -10,3 +10,10 @@ program should only be pure expressions.
- Limit the use of statements. Try to use expressions instead, or move
the statement out to a function.
+
+** Findings
+
+- Having iterators that you can't clone (like stdin) makes certain
+ things difficult. Eg, doing part 1 and 2 together.
+- Using "new type" structs can be a pain. derive_more crate made most
+ of that pain go away.