In F# code I have a tuple:
let myWife=(\"Tijana\",32)
I want to access each member of the tuple separately. For instance this what I want to ac
You can use the function fst to get the first element, and snd to get the second ekement. You can also write your own 'third' function:
let third (_, _, c) = c
Read more here: F# Language reference, Tuples