diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-03-08 21:04:38 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-03-08 21:04:38 -0800 |
commit | 38ab33a18d25659486fbf3d85e10c958945cf394 (patch) | |
tree | 3bcfa7295403ddf34de8beca7d50cbef34436d69 | |
parent | 3ef3d46d7268e4f3b3b580b41b21e151c5f5cf85 (diff) | |
download | mu-38ab33a18d25659486fbf3d85e10c958945cf394.tar.gz |
.
-rw-r--r-- | shell/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/README.md b/shell/README.md index 318fa5e1..0d083773 100644 --- a/shell/README.md +++ b/shell/README.md @@ -2,9 +2,9 @@ Currently runs a tiny subset of Lisp. To build and run it from the top-level: -``` -./translate shell/*.mu -qemu-system-i386 disk.img +```sh +$ ./translate shell/*.mu +$ qemu-system-i386 disk.img ``` You can type in expressions, hit `ctrl-s` to see their results, and hit `Tab` |