would some kind of boolean expression be possible?
I tried it this way but no luck. Tbh i am not quite sure how the syntax works
true :: true = bool(0)
false :: false = bool(1)
not :: not(true) = false
bool_eq :: bool(A) == bool(B) = A == B
solve :: true == not(false) {
true | all
false | all
bool_eq | all
}
would some kind of boolean expression be possible?
I tried it this way but no luck. Tbh i am not quite sure how the syntax works