meowlang/compiler/Compiler.cs
2022-02-12 02:29:25 +01:00

14 lines
275 B
C#

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());
}
}