ligo/contracts/counter.ligo
2019-05-12 20:57:30 +00: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)