ligo/src/test/contracts/expected/quote-declarations.ligo.expected

6 lines
165 B
Plaintext
Raw Normal View History

2020-06-08 15:00:44 +02:00
function foo (const input : int) : int is input + 23
function bar (const input : int) : int is input + 51
function main (const i : int) : int is foo (i) + bar (i)