blob: d4d9177d3bcb7db61e230d3f2ffb9277ca25adfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import java.io.*;
import antlr.*;
public class Main {
public static void main(String[] args) {
try {
IDLLexer lexer = new IDLLexer(new DataInputStream(System.in));
IDLParser parser = new IDLParser(lexer);
parser.specification();
} catch(Exception e) {
System.err.println("exception: "+e);
}
}
}
|