Files
mosh/parse.cpp
T
2011-01-09 04:39:51 -05:00

17 lines
223 B
C++

#include <vector>
#include "parser.hpp"
int main( void )
{
Parser::Parser parser;
std::vector<Parser::Action> a, b, c;
a = parser.input( 'x' );
b = parser.input( 'y' );
c = parser.input( 'z' );
return 0;
}