mystring.c had a little (non-)error.
[xmlparser.git] / Main.java
blob1d6cc72330689ad3f63a0fdc2a0deb044cfb9326
1 import java.io.IOException;
3 public class Main {
4 public static void main(String[] args) throws IOException {
5 XMLTag root = XMLParser.parse(args[0]);
6 System.out.println("Right before printing the tree");
7 System.in.read();
8 root.printTree();
9 System.out.println("Right after printing the tree, right before exiting");
10 System.in.read();