Skip to content
Snippets Groups Projects
Select Git revision
  • master default
1 result

PrettyPrint.java

Blame
  • PrettyPrint.java 311 B
    /* 
     * Copyright (C) 2006  Anders Nilsson <anders.nilsson@cs.lth.se>
     *
     * This file is part of OntologyCompiler.
     */
    
    
    import AST.Start;
    
    public class PrettyPrint extends Parser {
    	public static void main(String args[]) {
    		Start ast = parse(args);
    
    		// Dump the AST
    		ast.prettyPrint("  ", System.out);
    	}
    }