2f6e17c837
patterns.
11 lines
259 B
Plaintext
11 lines
259 B
Plaintext
type action is
|
|
| Increment of int
|
|
| Decrement of int
|
|
|
|
function main (const p : action ; const s : int) : (list(operation) * int) is
|
|
block {skip} with ((nil : list(operation)),
|
|
case p of
|
|
| Increment (n) -> s + n
|
|
| Decrement (n) -> s - n
|
|
end)
|