ligo/src/test/contracts/counter.ligo
2019-09-15 13:12:19 +02:00

7 lines
223 B
Plaintext

type some_type is int
function main (const p : int ; const s : some_type) : (list(operation) * int) is
block { skip } // skip is a do nothing instruction, needed for empty blocks
with ((nil : list(operation)), p + s)