about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-02-03 00:45:36 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-02-03 00:45:36 -0800
commitf7c9c8f0d2333d20aa540d4f4c08448c5966b52b (patch)
tree294dcf532ebddf667655840e24d9fdb331cccf0e
parentb301e0c0e6b54dceecbe4ee1ef8f610411015c30 (diff)
downloadmu-f7c9c8f0d2333d20aa540d4f4c08448c5966b52b.tar.gz
4201
-rw-r--r--arc/Readme.md (renamed from arc/Readme)4
1 files changed, 4 insertions, 0 deletions
diff --git a/arc/Readme b/arc/Readme.md
index a4f0e212..33ec3258 100644
--- a/arc/Readme
+++ b/arc/Readme.md
@@ -3,12 +3,16 @@ Original prototype, last modified 2015-03-14
 First install [Racket](http://racket-lang.org) (just for the initial
 prototype). Then:
 
+  ```shell
   $ cd mu/arc
   $ git clone http://github.com/arclanguage/anarki
   $ ./mu test mu.arc.t  # run tests
+  ```
 
 Example programs:
 
+  ```shell
   $ ./mu factorial.mu  # computes factorial of 5
   $ ./mu fork.mu  # two threads print '33' and '34' forever
   $ ./mu channel.mu  # two threads in a producer/consumer relationship
+  ```