using System; using System.IO; public class Driver { public static int Main(String[] args) { if (args.Length != 1) { Console.WriteLine("Syntax: zs "); return 1; } using (StreamReader reader = new StreamReader(args[0])) { Scanner.Init(reader); Parser.Parse(); Code.WritePEFile(); } return 0; } }