More implemented

This commit is contained in:
Smaug123
2024-01-22 18:37:23 +00:00
parent fdd8fb31b1
commit 4275b5caa7
8 changed files with 244 additions and 136 deletions

View File

@@ -1,13 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<Compile Include="Domain.fs" />
<Compile Include="Lexer.fs" />
<None Include="Program.fs"/>
</ItemGroup>
<ItemGroup>
<Compile Include="Domain.fs"/>
<Compile Include="Lexer.fs"/>
<Compile Include="Parser.fs"/>
</ItemGroup>
</Project>