ligo/test/contracts/dispatch-counter.ligo

17 lines
461 B
Plaintext
Raw Normal View History

2019-05-13 00:56:22 +04:00
type action is
| Increment of int
| Decrement of int
function increment(const i : int ; const n : int) : int is
block { skip } with (i + n)
function decrement(const i : int ; const n : int) : int is
block { skip } with (i - n)
function main (const p : action ; const s : int) : (list(operation) * int) is
block {skip} with ((nil : list(operation)),
case p of
| Increment (n) -> increment (s, n)
| Decrement (n) -> decrement (s, n)
2019-05-13 00:56:22 +04:00
end)