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/34_multiple-args.test
2022-12-16 22:13:16 +01:00

14 lines
202 B
Text

void test (int a, int b, int c, int d) {
puti(a);
puts(" - ");
puti(b);
puts(" - ");
puti(c);
puts(" - ");
puti(d);
puts("\n");
}
void main () {
test(1, 2, 3, 4);
}