On Tue Feb 28 00:19:00 2023 +0000, Zebediah Figura wrote:
I guess, but if we really need to optimize, we shouldn't be doing a nested loop in the first place, so this just looks odd.
Also, doing string comparisons is at risk of being slower than what you gain. Rather, something like `if (var1 == var2) break;` should do a better job.