summaryrefslogtreecommitdiff
path: root/readme.txt
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2014-04-11 22:25:15 +1000
committerJed Barber <jjbarber@y7mail.com>2014-04-11 22:25:15 +1000
commitb123d2018f88570bdf1c1a93f19ee00cdcdf216d (patch)
tree3b469a4df21caef1dae1654ab32c736c46f42496 /readme.txt
parent281425310c5db21f87981eeb9601a71d1974d98d (diff)
Readme added
Diffstat (limited to 'readme.txt')
-rw-r--r--readme.txt35
1 files changed, 35 insertions, 0 deletions
diff --git a/readme.txt b/readme.txt
new file mode 100644
index 0000000..00c1ed2
--- /dev/null
+++ b/readme.txt
@@ -0,0 +1,35 @@
+
+Usage of each interpreter is of the form:
+
+<interpreter name> <program file>
+
+
+
+
+Fractran file format is one integer followed by an arbitrary number of
+fractions of the form a/b where both a and b are integers and b is not 0.
+Whitespace is not allowed inside a fraction, but is otherwise ignored.
+
+
+
+
+Thue file format is of a list of thue rules followed by the initial program
+state, as per the thue specification. Note that whitespace before and after
+the lhs or rhs of a rule is counted in that rule, and that a rule consisting
+of only whitespace (eg " ::= ") is treated as any other rule, not the
+termination of the rule list.
+
+
+
+
+Unlambda files should contain a single unlambda term, usually an application.
+All characters on a line after a # will be ignored, unless the # was part of
+a . or ? function. All whitespace is ignored.
+
+
+
+
+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 ].
+