OK, so if I have a function which returns a tuple (a,b,c,d), but I only want the 2nd and 4th value, the most concise way is
(x,y) = f()[[2;4]]
OK, so if I have a function which returns a tuple (a,b,c,d), but I only want the 2nd and 4th value, the most concise way is
(x,y) = f()[[2;4]]