* Runs compiler based on command line arguments. This method is invoked by
* the JVM when this class is run from the command line.
*/
public static void main(String[] args) throws IOException {
FileSystem sysFs = SystemFileSystem.INSTANCE;
FileRef cwd = sysFs.parseFilename(System.getProperty("user.dir"));
int result = main(sysFs, System.err, cwd, args);
System.exit(result);
}
/**