fork download
  1. open System
  2.  
  3. let inline add a b = a + b
  4.  
  5. add 2 3 |> printfn "%A"
  6. add "Hello " "World!" |> printfn "%A"
Success #stdin #stdout 0.17s 26280KB
stdin
Standard input is empty
stdout
5
"Hello World!"