Skip to content

Instantly share code, notes, and snippets.

@corajr
Last active December 5, 2015 19:52
Show Gist options
  • Select an option

  • Save corajr/2fab59ced37e4c93c4c6 to your computer and use it in GitHub Desktop.

Select an option

Save corajr/2fab59ced37e4c93c4c6 to your computer and use it in GitHub Desktop.
let withDefault (defaultVal: 'a, x : 'a option) =
match x with
| Some(xVal) -> xVal
| None -> defaultVal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment