commit a92383960d0d3e3c3b88d0dc1e323038dce387a8
parent 3c5438bb8dd23b071dd087be96e62be00c4a80f0
Author: citbl <citbl@citbl.org>
Date: Sun, 16 Nov 2025 19:14:40 +1000
add test
Diffstat:
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/tests/ex-call-many-args.ox b/tests/ex-call-many-args.ox
@@ -0,0 +1,11 @@
+int integer(int a, int b, int c, int d, int e, int f, int g, int h, string words) {
+ print(words);
+ return a * b + c * d + e + f - g * h;
+}
+
+
+void main() {
+ int a = 5;
+ int d = 8;
+ print(integer(a, 12, 16, d, 4, 7, 10, 4, "this is a test"));
+}