mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-05 14:18:40 +00:00
12 lines
219 B
Forth
12 lines
219 B
Forth
namespace WoofWare.DotnetRuntime
|
|
|
|
module Program =
|
|
let reallyMain (argv : string[]) : int = 0
|
|
|
|
[<EntryPoint>]
|
|
let main argv =
|
|
try
|
|
reallyMain argv
|
|
with _ ->
|
|
reraise ()
|