Core keyword support

This commit is contained in:
M66B
2018-11-25 13:34:08 +01:00
parent 147bf957d8
commit a9d93929af
9 changed files with 1212 additions and 14 deletions

View File

@@ -434,4 +434,15 @@ public class Helper {
result.add(array[i]);
return result;
}
static boolean equal(String[] a1, String[] a2) {
if (a1.length != a2.length)
return false;
for (int i = 0; i < a1.length; i++)
if (!a1[i].equals(a2[i]))
return false;
return true;
}
}