79551859

Date: 2025-04-03 02:11:11
Score: 1.5
Natty:
Report link

You can define a macro like this:

#define BREAKABLE_SCOPE(x) for(int x;x<1;++x)

Then use it:

BREAKABLE_SCOPE(_)
{
    ...
    if (condition)
        break;
    ...
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Cairne Douglas