Mercurial > ~dholland > hg > ag > index.cgi
comparison tests/agcl/parsifal/keydis2.syn @ 0:13d2b8934445
Import AnaGram (near-)release tree into Mercurial.
author | David A. Holland |
---|---|
date | Sat, 22 Dec 2007 17:52:45 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:13d2b8934445 |
---|---|
1 [ | |
2 disregard ws | |
3 ] | |
4 | |
5 file $ | |
6 -> thing, eof | |
7 | |
8 thing | |
9 -> '[', "blah ", ']' | |
10 -> word | |
11 | |
12 word | |
13 -> letter | |
14 -> word, letter | |
15 | |
16 ws | |
17 -> space + tab | |
18 | |
19 letter = 'a-z' | |
20 space = ' ' | |
21 tab = '\t' | |
22 eof = '\n' |