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