Logical OR operator?

Is there some way to implement logical OR? I want students to be able to enter “undefined” or “UND” or “und”.

  • List item

or works, but only with complete statements. Here’s what I mean:

correct: answer = 4 or answer = -4

but not:

correct: answer = 4 or -4

That makes sense.thanks.