I want to make a list which is of specification :(string*int) list and the tuples can be edited. For example, suppose
val gamma = [("a",20),("b",30),("c",40)] :(string*int) list
Now, how can I change the value 30
in the tuple ("b",30)
to , let's say, 70.