ligo/contracts/quote-declarations.ligo

14 lines
244 B
Plaintext
Raw Normal View History

2019-05-13 00:56:22 +04:00
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)