ambrosiaforest@lemmy.blahaj.zone to 196@lemmy.blahaj.zone · 10 months agofixed rulelemmy.blahaj.zoneimagemessage-square91fedilinkarrow-up1612arrow-down12file-text
arrow-up1610arrow-down1imagefixed rulelemmy.blahaj.zoneambrosiaforest@lemmy.blahaj.zone to 196@lemmy.blahaj.zone · 10 months agomessage-square91fedilinkfile-text
minus-squarep1mrxlinkfedilinkarrow-up2·edit-210 months agoGNU style is logical, because braces are syntactically a single statement: while (x == y) func1(); // can be replaced by { ... } However, I prefer to entirely avoid unbraced single statements after while/if: while (x == y) { func1(); // easy to add func2(); later } Although this is ok when it fits: while (x == y) func1(); // brevity!
GNU style is logical, because braces are syntactically a single statement:
However, I prefer to entirely avoid unbraced single statements after while/if:
Although this is ok when it fits: