Files
compiler-explorer/examples/fsharp/default.fs
Steve 75b9d30485 Support trunk and execution for .NET (#4351)
* Support trunk and execution for .NET
* Adjust compilers order
* Support stdin
* Update samples
2022-11-27 10:14:35 -06:00

9 lines
108 B
Forth

module Program
let square num = num * num
[<EntryPoint>]
let main _ =
printfn "%d" (square 42)
0