blob: 1967450068910ef490553f1ab1f2b44fc049d49a [file] [log] [blame]
if (a) {
b
}
else if (c) {
d
}
else if (e) {
f
}
else if (g) {
h
}
-----
if (a) {
b
} else if (c) {
d
} else if (e) {
f
} else if (g) {
h
}