Add dictionary generation

This commit is contained in:
2025-05-13 21:07:53 +02:00
commit a25cbd6dde
12 changed files with 777 additions and 0 deletions

9
PoyoLang.Test/Program.cs Normal file
View File

@@ -0,0 +1,9 @@
// See https://aka.ms/new-console-template for more information
using PoyoLang.Dictionary;
Console.OutputEncoding = System.Text.Encoding.UTF8;
Console.WriteLine(string.Join(Environment.NewLine, Alphabet.BaseAlphabet));
Console.WriteLine(Alphabet.BaseAlphabet.Length);