Files
why3/examples/double_wp/state.why

10 lines
87 B
Plaintext

theory State
use export map.Map
type id = Id int
type state = map id int
end