- or download this
# query example
query:[ select foo from table X where foo.whatever is acceptable ]
- or download this
# template example
identifier TEMPLATE
...
query:[....];
more code that uses query results; etc.
}
- or download this
$TemplateParser = new Parse::RecDescent(<<'__GRAMMAR__');
...
| <do-this-other-parser: $QueryParser->query() >
__GRAMMAR__