Created
November 7, 2014 11:06
-
-
Save Tarmil/3323e1a2c5a054885f24 to your computer and use it in GitHub Desktop.
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 mutable result = Unchecked.defaultof< ^a> | |
let success = Int32.TryParse("12", &result) | |
// can be written as: | |
let success, result = Int32.TryParse("12") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment