Say I have a single-for loop
function; would it be best to choose return
or break
if there is no mechanic-related preference to it? Or they would be exactly the same?
void function()
{
for (int i; i<foo; i++)
{
if (something)
// return? break?
}
// nothing else after this
}