envlang-csharp/AstGenerator.cs
2020-08-16 00:45:07 +00:00

12 lines
313 B
C#

// Run with: sh ./T4/Generators.sh
using System.Collections.Generic;
public static class AstGenerator {
public static void Generate() {
Generator.Generate("Ast.cs", "namespace Ast {", "}", "Ast.", "Expr", new Dictionary<string, string> {
{ "Int", "int" },
{ "String", "string" },
});
}
}