I'm following Hillel Wayne's book car & traffic light example and found that doingeitherdo_something := TRUEorskip;end either;In PlusCal gets translated to:\/ /\ do_something' = TRUE\/ /\ TRUE/\ UNCHANGED do_somethingAnd replacing this with:do_something' = TRUE \/ UNCHANGED do_somethingDoesn't work.Why aren't those equivalent?