Created
November 25, 2011 02:57
-
-
Save davidgrenier/1392731 to your computer and use it in GitHub Desktop.
ExceptionCaught
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let fn () = failwith "Test";; | |
| async { | |
| try | |
| fn () | |
| with e -> printfn "Catched %A" e | |
| } |> Async.RunSynchronously |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment