Main.java
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:0k
源码类别:

编译器/解释器

开发平台:

Others

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