ligo/src/test/contracts/counter.religo
Pierre-Emmanuel Wulfman 89f2b44e7d Works also when the function parameter are passed in the rhs
Fix some religo contract
2020-03-04 10:35:34 +01:00

5 lines
125 B
Plaintext

type storage = int;
let main = ((p, s) : (int, storage)) : (list (operation), storage) =>
([] : list (operation), p + s);