modified: test/bytecode/javFiles/Merge.jav

modified:   test/bytecode/javFiles/OL.jav
This commit is contained in:
Martin Plümicke 2018-08-06 13:14:08 +02:00
parent 89387d2718
commit 6264d928b2
2 changed files with 4 additions and 3 deletions

View File

@ -8,10 +8,11 @@ merge(a, b) {
a.addAll(b);
return a;
}
/*
sort(in){
var firstHalf = in.subList(1,2);
var secondHalf = in.subList(1,2);
return merge(sort(firstHalf), sort(secondHalf));
}
*/
}

View File

@ -13,9 +13,9 @@ public class OL {
}
public class OLMain {
public class OLMain {
main(x) {
main(java.lang.Integer x) {
var ol;
ol = new OL();
return ol.m(x);