I have a list of tuples containing intergers.
[(123,123,123),(123,123,123),(123,123,123)]
I want to get the sum of all the second values of the list eg;
[(_,123,_),(_,123,_),(_,123,_)]
123 + 123 + 123
I think i should be using fold but im not sure