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/29_if-int.test

6 lines
108 B
Text
Raw Normal View History

2022-12-14 00:31:05 +01:00
void main () {
2022-12-22 19:15:42 +01:00
if (1) { # Même les int peuvent fonctionner dans les conditions
2022-12-14 00:31:05 +01:00
return;
}
}