ligo/src/test/contracts/expected/counter.religo

6 lines
129 B
Plaintext
Raw Normal View History

2020-06-03 12:41:26 +02:00
type storage = int;
let main =
2020-06-04 09:54:25 +02:00
(((p, s): (int, storage))): (list(operation), storage) =>
2020-06-03 12:41:26 +02:00
([] : list(operation), p + s);