Initial commit

This commit is contained in:
Smaug123
2025-02-13 23:30:15 +00:00
commit a5a3d87ba9
15 changed files with 505 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace WoofWare.DotnetRuntime
module Program =
let reallyMain (argv : string[]) : int = 0
[<EntryPoint>]
let main argv =
try
reallyMain argv
with _ ->
reraise ()