From 338194dadb31b01e21d1356e972897d66ad10e01 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Fri, 16 Dec 2022 22:13:16 +0100 Subject: [PATCH] multiples args test --- tests/34_multiple-args.test | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/34_multiple-args.test diff --git a/tests/34_multiple-args.test b/tests/34_multiple-args.test new file mode 100644 index 0000000..c532869 --- /dev/null +++ b/tests/34_multiple-args.test @@ -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); +}