package java; import java.io.*; import aioli.vtp.*; import aioli.variable.*; public final class Printer { public final static void main(String[] theArgs) { try { Tree tree = JavaParser.parse(new FileInputStream(theArgs[0])); Variable var = new Variable(tree); var.write("std",System.out,70); } catch (FileNotFoundException e) { System.err.println("exception: "+e); } catch (java.lang.Exception e) { System.err.println("exception: "+e); } } }