------------------------------ MODULE Example1 ------------------------------
EXTENDS Integers
VARIABLE x
Init == x = 0
Next == x' = ( x + 1 ) % 100
Spec == Init /\ [][Next]_<<x>> /\ []<><<TRUE>>_<<x>>
Liveness1 == <>(x = -1000)
Liveness2 == <>(x = 101)
=============================================================================