From 58b9f93c2ce3ef22d0f6383501018f05ba9460f9 Mon Sep 17 00:00:00 2001 From: Theo Souchon Date: Tue, 22 Nov 2022 10:12:34 +0900 Subject: [PATCH] fix test program --- tests-parsimony/testFile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests-parsimony/testFile.c b/tests-parsimony/testFile.c index e46e91e..c6c6c05 100644 --- a/tests-parsimony/testFile.c +++ b/tests-parsimony/testFile.c @@ -21,7 +21,7 @@ print("\n"); // Use of the P class - x = new(P, {x: 2, y: 4, z: 6 }); + x = new(P, {x: 2, y: 4, z: 6, w: 9}); x.functions.printf(x); // Create another class from P @@ -36,7 +36,7 @@ // Use of the Q class y = new(Q, {x: 1, y: 2, z: 3, q: 42 }); - P.functions.printf(P); + y.functions.printf(y); nil; } \ No newline at end of file