This repository has been archived on 2022-12-27. You can view files and clone it, but cannot push or open issues or pull requests.
compilateurMIPS/tests/35_op.test

8 lines
97 B
Text
Raw Normal View History

2022-12-22 19:15:42 +01:00
void main () {
2022-12-22 19:20:59 +01:00
if (1 && 3 < 4 || 1) {
2022-12-22 19:15:42 +01:00
puti(1);
} else {
puti(0);
}
}