Partial implementation sufficient to start executing Hello World

This commit is contained in:
Smaug123
2025-02-18 19:32:05 +00:00
parent a5a3d87ba9
commit f520b90483
19 changed files with 1912 additions and 53 deletions

View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs"/>
</ItemGroup>
</Project>