No, it's not possible to compare boolean tags in this way. You can cast these values into byte. And compare them:
byte a = Tags.A;
byte b = Tags.B;
if (a==b){
print("same");
}
Or use XOR operator:
if (Tags.A ^ Tags.{
print ("not same");
}
else{
print("same");
}
Best regards,
Ruslan
The administrator has disabled public write access.