about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-27 18:05:34 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-27 18:05:34 -0700
commit05c2f62a7766ea18926741219e17b3d297d5f4eb (patch)
tree4cca226b1fce3dcfa18f46247fdf31559e519d62 /Readme.md
parent784e17d4875eb4cbe455e696228b0b927c6b1d66 (diff)
downloadmu-05c2f62a7766ea18926741219e17b3d297d5f4eb.tar.gz
5487
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/Readme.md b/Readme.md
index 2fd18a27..dc4a2d27 100644
--- a/Readme.md
+++ b/Readme.md
@@ -7,20 +7,19 @@
 Goals (in priority order):
 
 * [Reward curiosity.](http://akkartik.name/about)
-  * Easy to build, easy to run.
+  * Easy to build, easy to run. [Minimal dependencies](http://akkartik.name/post/libraries2),
+    so that installation is always painless.
   * All design decisions comprehensible to a single individual. (On demand.)
   * All design decisions comprehensible without needing to talk to anyone.
     (I always love talking to you, but I try hard to make myself redundant.)
   * [A globally comprehensible _codebase_ rather than locally clean code.](http://akkartik.name/post/readable-bad)
+  * Clear error messages over expressive syntax.
 * Safe.
   * Thorough test coverage. If you break something you should immediately see
     an error message. If you can manually test for something you should be
     able to write an automated test for it.
   * Memory leaks over memory corruption.
-  * Clear error messages over expressive syntax.
 * Teach the computer bottom-up.
-* [Minimal dependencies](http://akkartik.name/post/libraries2), so that
-  installation is always painless.
 
 Non-goals:
 * Efficiency. Clear programs over fast programs.