Press CTRL+C or CMD+C to copy the selected text and close this dialog.
Tweet
0 people like it. Like the snippet!
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11:
open System let helloWorld () = match Some "Hello World!" with | Some value -> match box value with | :? string as greeting -> printfn "%s" greeting | _ -> () | _ -> () helloWorld ()