Skip to content

Instantly share code, notes, and snippets.

@Tarmil
Created November 7, 2014 11:06
Show Gist options
  • Save Tarmil/3323e1a2c5a054885f24 to your computer and use it in GitHub Desktop.
Save Tarmil/3323e1a2c5a054885f24 to your computer and use it in GitHub Desktop.
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