Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
2 people like it. Like the snippet!
This one confused me a bit.
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17:
module M = let f x = let y = "asdf" y |> let g xOpt = match xOpt with | Some x -> printfn "%A" x | None -> printfn ":(" g (Some 12) x let printStr = printfn "%s" M.f printStr