input revision 324c4644fee44b9898524c09511bd33c3f12e2df
1import org.antlr.runtime.*;
2
3public class Main {
4	public static void main(String[] args) throws Exception {
5	    for (int i=0; i<args.length; i++) {
6		CharStream input = new ANTLRFileStream(args[i]);
7		FuzzyJava lex = new FuzzyJava(input);
8		TokenStream tokens = new CommonTokenStream(lex);
9		tokens.toString();
10		//System.out.println(tokens);
11	    }
12	}
13}
14