vault backup: 2025-02-23 19:00:54

This commit is contained in:
Dane Sabo 2025-02-23 19:00:54 -05:00
parent 2e8ebfcebd
commit 2bb3f63343

View File

@ -0,0 +1,11 @@
---- MODULE Test ----
EXTENDS Naturals
VARIABLE x
Init == x = 0
Next == x' = x + 1
Spec == Init /\ [][Next]_x
====