Suppose you're trying to write code in which, if Beethro steps anywhere along the perimeter of a square, X, Y, and Z happen. Currently, you'd have to write:
if Beethro is on (side 1):
goto "Commands"
if Beethro is on (side 2):
goto "Commands"
if Beethro is on (side 3):
goto "Commands"
if Beethro is on (side 4):
goto "Commands"
...
Label "Commands"
command X
command Y
command Z
It would be so terribly nice and easier to read if we could just write:
if Beethro is on (side 1) OR (side 2) OR (side 3) OR (side 4):
command X
command Y
command Z
The slightest exception to defining an exactly rectangular shape requires a whole new "
if"
command. If this is the sort of OR that he's asking for, I'm behind it 100%.