about summary refs log tree commit diff stats
path: root/apps/tile/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tile/README.md')
-rw-r--r--apps/tile/README.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/apps/tile/README.md b/apps/tile/README.md
deleted file mode 100644
index a13f7662..00000000
--- a/apps/tile/README.md
+++ /dev/null
@@ -1,33 +0,0 @@
-A programming environment that tries to [“stop drawing dead fish”](http://worrydream.com/#!/StopDrawingDeadFish).
-
-<img alt='screenshot' src='../../html/rpn5.png' width='500px'>
-
-To run:
-
-```
-./translate_mu apps/tile/*.mu
-./a.elf screen
-```
-
-To run tests:
-
-```
-./a.elf test
-```
-
-To run a conventional REPL (for debugging):
-
-```
-./a.elf type
-```
-
-## hacking
-
-Unlike the top-level directory, this is just a prototype so far. There are no
-tests.
-
-To add a new primitive you'll need to hard-code it into the `evaluate`
-function (apps/tile/rpn.mu).
-
-There's also a second place you'll want to teach about predefined primitives:
-`bound-function?` (apps/tile/environment.mu)