Add dictionary generation
This commit is contained in:
14
PoyoLang.Test/PoyoLang.Test.csproj
Normal file
14
PoyoLang.Test/PoyoLang.Test.csproj
Normal 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
9
PoyoLang.Test/Program.cs
Normal 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);
|
||||
Reference in New Issue
Block a user