blob: fc0079e12e46abfe0574d283c149b77a785dfe60 [file] [log] [blame]
if (a) dosomethingLong(
)
if (b) doSomethingShort()
for (a; b; c) loooong(
)
for (a; b; c) short()
while (true) short()
while (true) loong(
)
-----
if (a) {
dosomethingLong(
)
}
if (b) doSomethingShort()
for (a; b; c) {
loooong(
)
}
for (a; b; c) short()
while (true) short()
while (true) {
loong(
)
}