ligo/src/contracts/quote-declarations.ligo
2019-05-14 17:53:44 +02: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)