mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-23 00:22:56 +01:00
8 lines
234 B
Text
8 lines
234 B
Text
(* Sample F# application *)
|
|
[<EntryPoint>]
|
|
let main argv =
|
|
printfn "%A" argv
|
|
System.Console.WriteLine("Hello from F#")
|
|
0 // return an integer exit code
|
|
|
|
//--------------------------------------------------------
|