updated recursive test using this. syntax

This commit is contained in:
mrab 2024-06-17 19:25:24 +02:00
parent 5269971334
commit d2554c9b22

View File

@ -5,7 +5,7 @@ public class TestRecursion {
public TestRecursion(int n) public TestRecursion(int n)
{ {
value = n; this.value = n;
if(n > 0) if(n > 0)
{ {