mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-05 22:28:38 +00:00
14 lines
248 B
Forth
14 lines
248 B
Forth
namespace HelloWorld
|
|
|
|
module Program =
|
|
let reallyMain argv =
|
|
System.Console.WriteLine "Hello, world!"
|
|
0
|
|
|
|
[<EntryPoint>]
|
|
let main argv =
|
|
try
|
|
reallyMain argv
|
|
with _ ->
|
|
reraise ()
|