summaryrefslogtreecommitdiff
path: root/fast/test_grammar.cc
blob: 34a55ba6bf39aafc8364764b0e054746066b07c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <fstream>

#include "grammar.hh"

using namespace std;


int
main(int argc, char** argv)
{
  G::Grammar g(argv[1]);
  for (auto it = g.rules.begin(); it != g.rules.end(); it++)
    cout << (**it).escaped() << endl;

  return 0;
}