view 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
line wrap: on
line source

[
  disregard ws
]

file $
  -> thing, eof

thing
  -> '[', "blah ", ']'
  -> word

word
  -> letter
  -> word, letter

ws
  -> space + tab

letter = 'a-z'
space = ' '
tab = '\t'
eof = '\n'