Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created May 4, 2015 13:51
Show Gist options
  • Save vgaltes/5da2202b0dfd5e833a2c to your computer and use it in GitHub Desktop.
Save vgaltes/5da2202b0dfd5e833a2c to your computer and use it in GitHub Desktop.
FSharp Bank Kata - Get Option value
let printValue opt =
match opt with
| Some x -> printfn "%A" x
| None -> printfn "No value."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment