diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-03-08 21:03:15 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-03-08 21:03:15 -0800 |
commit | 2e58ffd65319b161bda1e43f2de37b22c698125c (patch) | |
tree | 3b85381abb63cb71c45d4fde4f3181379e1062e0 | |
parent | 0810c7b77e5a2571ce2a04b07293bcb0de54929d (diff) | |
download | mu-2e58ffd65319b161bda1e43f2de37b22c698125c.tar.gz |
.
-rw-r--r-- | shell/README.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/shell/README.md b/shell/README.md index c1dee248..fabf16fa 100644 --- a/shell/README.md +++ b/shell/README.md @@ -6,3 +6,16 @@ Currently runs a tiny subset of Lisp. To build and run it from the top-level: ./translate shell/*.mu qemu-system-i386 disk.img ``` + +You can type in expressions, hit `ctrl-s` to see their results, and hit `Tab` +to focus on the `...` below and browse how the results were computed. [Here's +a demo.](https://merveilles.town/@akkartik/105790894303047592) The bottom of +the screen shows context-dependent keyboard shortcuts (there's no mouse in the +Mu computer at the moment). + +*Known issues* + +* There's no way to save to disk. + +* Don't press keys too quickly (such as by holding down a key). The Mu + computer will crash (and often Qemu will segfault). |