about summary refs log tree commit diff stats
path: root/ext/wittle_generator/Test.cpp
blob: 61392157dbbe489604409033cfb9dfa72067ce28 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include "Generate.h"

int main(int, char**) {
  Generate generator;
  generator.setSymbol(Decoration::Start, 0, 4 * 2);
  generator.setSymbol(Decoration::Exit, 4 * 2, 0);
  generator.generate(4 * 2 + 1, 4 * 2 + 1, {{{Decoration::Triangle, 6}}});

  return 0;
}