b, a = a, b
Grabbing only one value looks like this
_, y = returnsTwoValues() -- grab only the second y = returnsTwoValues() -- grab only the first
a,_ = two_values() _,b = two_values()
Grabbing only one value looks like this