Add project files.

This commit is contained in:
EugeneTes
2026-01-13 09:06:47 +01:00
parent dd935fe1fa
commit 7390693f50
187 changed files with 83457 additions and 0 deletions

11
Parser/Program.cs Normal file
View File

@@ -0,0 +1,11 @@
// See https://aka.ms/new-console-template for more information
using System.Text.Json;
using Parser;
var bar = File.ReadAllText("kitchen.txt");
var parser = new Parser.RecipeTranslator();
var ast = parser.ParseReceipt(bar);
Console.WriteLine(ASTNode.PrintNode(ast));
Console.ReadLine();