This commit is contained in:
Johannes Theiner 2018-04-09 21:28:40 +02:00
parent 1575441b49
commit 73e17aae12
1 changed files with 2 additions and 2 deletions

View File

@ -87,8 +87,8 @@ PascalString intToHex(int n) {
}
int getInt(char character) {
if(character == '0') return character;
else return '1';
if(character == '0') return 0;
else return 1;
}
PascalString bitwiseDualAnd(PascalString a, PascalString b) {