mirror of
https://github.com/HappyTanuki/BumbleCee.git
synced 2025-12-18 05:03:28 +00:00
21 lines
158 B
C++
21 lines
158 B
C++
void foo() {
|
|
if (a == b) {
|
|
c();
|
|
} else {
|
|
d();
|
|
}
|
|
|
|
while (true) {
|
|
// ...
|
|
}
|
|
|
|
switch (a) {
|
|
case 1:
|
|
c();
|
|
break;
|
|
case 2:
|
|
d();
|
|
break;
|
|
}
|
|
}
|