Merge branch 'targetBytecode' of gohorb.ba-horb.de:/bahome/projekt/git/JavaCompilerCore into targetBytecode

This commit is contained in:
pl@gohorb.ba-horb.de 2023-06-06 10:17:01 +02:00
commit 69f44c2927

View File

@ -24,13 +24,14 @@ public class Iteration {
var help;
help = m2(x, y);
var y2 = help.snd();
return new Pair<>(y2,x);
return new Pair<>(x,y2);
}
m2(x,y) {
var help = m1(x, y);
var x2 = help.fst();
return new Pair<>(y, x2);
return new Pair<>(x2, y);
}
}