This commit is contained in:
Johannes Theiner 2018-04-09 21:17:00 +02:00
parent d71ec42bce
commit a4255c3bb2
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ PascalString bitwiseHexAnd(PascalString a, PascalString b) {
for(int i = b.length; i >= 0; --i) {
if(a.length < i) result.characters[i] = a.characters[i];
println("i: ", i, " ", a.characters[i] & b.characters[i]);
result.characters[i] = a.characters[i] & b.characters[i];
}