Closed Rog3rSm1th closed 2 years ago
Before:
if cond { return 1; else : return 0; }
After :
if cond { return 1; } else { return 0; }
Before:
After :