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/36_if-str.test
Mylloon 3614712f6f
* add &&
* allow int in cond/loop
2022-12-22 19:15:42 +01:00

6 lines
203 B
Text

void main () {
if ("mettez20svp") { # Error on line 2 col 20: Expected bool, int but given str.
# les strings ne sont pas valides pour les conditions
return;
}
}