diff options
author | Jed Barber <jjbarber@y7mail.com> | 2014-12-19 19:11:53 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2014-12-19 19:11:53 +1100 |
commit | 441cefdda7e88b8c6498ff80a9d2f9710cd91786 (patch) | |
tree | 0992425747392120ff2c84605a4b68cc69f91b74 | |
parent | 257bd248b0e8bbf3e2ab6d5c7ce81b2bf2fbff34 (diff) |
Added grasp interpreter information to readme
-rw-r--r-- | readme.txt | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -5,7 +5,7 @@ Usage of each interpreter is of the form: -The Thue interpreter also has several command line switches: +The Thue interpreter has several command line switches: -l --left Evaluates applicable rules left to right -r --right Evaluates applicable rules right to left @@ -16,6 +16,12 @@ The Thue interpreter also has several command line switches: +The Grasp interpreter has a command line switch: + + --testing Outputs a before and after of the graph, for debugging + + + Fractran file format is one integer followed by an arbitrary number of @@ -45,3 +51,11 @@ Brainfuck files should contain a number of brainfuck commands. All other characters are treated as whitespace and summarily ignored. The only restriction is that all [ loops must be closed with a corresponding ]. + + + +Grasp files follow the DOT graph description language, but for the purposes of +programming are restricted to digraphs. Everything is ignored except for the nodes, +edges, and their labels. Nodes may be named arbitrarily - it is the label of the +node that is important for the grasp program. + |