bytecode #5

Merged
mrab merged 4 commits from bytecode into master 2024-06-17 17:30:00 +00:00
Showing only changes of commit d2554c9b22 - Show all commits

View File

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