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/28_rec.test
2022-12-14 00:31:05 +01:00

11 lines
150 B
Text

void recursive (int n) {
if (n > 0) {
puti(n);
puts("\n");
recursive (n - 1);
}
}
void main () {
recursive(5);
}