ligo/contracts/quote-declarations.ligo
2019-05-12 20:57:30 +00:00

14 lines
244 B
Plaintext

function foo (const input : int) : int is begin
skip
end with (input + 23)
function bar (const input : int) : int is begin
skip
end with (input + 51)
function main (const i : int) : int is
begin
skip
end with foo (i) + bar (i)