Guest User

Untitled

a guest
Jun 17th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import org.antlr.runtime.*;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String args[]) throws Exception {
  6. sssLexer lex = new sssLexer(new ANTLRFileStream(args[0]));
  7.  
  8.  
  9.  
  10.  
  11.  
  12. CommonTokenStream tokens = new CommonTokenStream(lex);
  13. sssParser g = new sssParser(tokens);
  14. g.identifier();
  15. }
  16. }
Add Comment
Please, Sign In to add comment