Tagged Questions
Qi is a modern lisp-like functional programming language, which incorporates many ML-style features, and a very powerful (turing complete) type system.
3
votes
2answers
353 views
Implementing a XML translator using XML's EBNF
I'm contemplating the idea of implementing a XML translator using a compiler generator, based on the W3C's XML 1.1 spec, which includes a complete EBNF grammar.
More precisely, I plan to use Qi-YACC ...
1
vote
1answer
18 views
spirit::qi::grammar-name with different char size
I am making a parser with spirit::qi and aim for making it compatible with different char sizes.
template < typename Iterator >
struct grammar : qi::grammar < Iterator >
{
grammar () ...
1
vote
1answer
47 views
Troubles with own types in Qi
I've vainly tried to get the type declaration examples working with Clozure CL, e.g. the following:
(datatype fruit
if (element? F [apples pears oranges])
______________________________________
...