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

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\PoyoLang.Dictionary\PoyoLang.Dictionary.csproj" />
</ItemGroup>
</Project>

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