ligo/src/test/contracts/expected/function-shared.ligo.expected
2020-06-08 15:00:44 +02:00

7 lines
168 B
Plaintext

function inc (const i : int) : int is i + 1
function double_inc (const i : int) : int is inc (i + 1)
function foo (const i : int) : int is
inc (i) + double_inc (i)