about summary refs log tree commit diff stats
path: root/Readme.md
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-09-02 12:29:39 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-09-02 12:29:39 -0700
commit4977f1e03608dcdcf30276bc54e3aed2ab266c94 (patch)
tree467d4211cc6443d5adc27e18bac24e094532e7eb /Readme.md
parentebffd97f9db442804a75a75749f28f15a8f3f295 (diff)
downloadmu-4977f1e03608dcdcf30276bc54e3aed2ab266c94.tar.gz
2130
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md17
1 files changed, 7 insertions, 10 deletions
diff --git a/Readme.md b/Readme.md
index 6ee80039..1287e761 100644
--- a/Readme.md
+++ b/Readme.md
@@ -62,21 +62,18 @@ before we invest in the *visual* tools for making them concise.
 **Taking Mu for a spin**
 
 Mu is currently implemented in C++ and requires a unix-like environment. It's
-been tested on ubuntu 14.04 with recent versions of gcc and clang, but should
-work with earlier versions going quite far back. It has no other dependencies
-that aren't taken for granted in unix. In spite of needing C++ it uses no
-advanced features and is designed to eventually bootstrap using an assembler
-written directly in machine code. Currently you build it like so:
+been tested on ubuntu 14.04 on x86, x86\_64 and ARMv7 with recent versions of
+gcc and clang. Since it uses no recent language features and has no exotic
+dependencies, it should work with most reasonable versions, compilers or
+processors.
+
+Running Mu will always recompile it if necessary:
 
   ```shell
   $ cd mu
   $ ./mu
   ```
 
-Running mu will always recompile it if necessary. In this case it has no other
-work to do, so it'll show you a hopefully helpful message after it's done
-compiling.
-
 As a sneak peek, here's how you compute factorial in Mu:
 
 <img alt='code example' src='html/factorial.png' width='330px'>
@@ -414,7 +411,7 @@ to browse. To add to the trace, use `stash`. For example:
 Invaluable for understanding complex control flow without cluttering up the
 screen.
 
-The next major milestone on mu's roadmap is support for recording and faking
+The next major milestone on Mu's roadmap is support for recording and faking
 console input to a sandbox, so that you can type in an input once and have it
 replay everytime you hit F4. Once this support is in place it will be easy to
 generalize to more interfaces, like requesting urls over a network or reading