That's why I actually would prefer the "_" syntax:
var x int x = _ _ = 42 if x == _ { // this happens even though you've assigned 42 to _, yes }
That's why I actually would prefer the "_" syntax: