ex8.ox (238B)
// nested ifs
void main() {
int a = 10;
if(1 == 1) {
if(a == 11) {
print("this is wrong");
} else {
print("this is right");
}
}
}
// void test() {
// print("test 2");
// }