internal static List <Operation> Parse(string filename) { return(File.ReadAllLines(filename) .Select(line => Operator.Parse(line)) .ToList()); }