/* 
 * Copyright (C) 2006  Anders Nilsson <anders.nilsson@cs.lth.se>
 *
 * This file is part of OntologyCompiler.
 */


import AST.Start;

public class Dumper extends Parser {
	public static void main(String args[]) {
		Start ast = parse(args);

		// Dump the AST
		ast.dumpTree("  ", System.out);
	}
}