using System; using meowlang.parser; namespace meowlang.compiler; static class Compiler { private static void Main(string[] args) { var path = "example.mew"; var model = Parser.Parse(path); Console.WriteLine(model.AutoToString()); } }