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/11_def.test

9 lines
168 B
Text

int cops_calculator (int a) {
int res = a * 100 + 20 - 8;
return res * 2 / 2;
}
void main () {
int magic_number = 13;
cops_calculator(magic_number);
}