@tenderlove i was going to guess 1, but now i‘m only wondering if you can even do that…two method parameters with the same name?
Aaron Patterson ✅
@eikes normally no, but if you prefix them with an _ you can. So like `def foo(a, a); end` is a syntax error, but `def foo(_a, _a); end` is not