multiples args test
This commit is contained in:
parent
3b03e2e0e5
commit
338194dadb
1 changed files with 14 additions and 0 deletions
14
tests/34_multiple-args.test
Normal file
14
tests/34_multiple-args.test
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
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);
|
||||||
|
}
|
Reference in a new issue