ligo/src/test/contracts/closure-2.ligo
2020-02-10 19:27:58 +01:00

6 lines
140 B
Plaintext

function foobar (const i : int) : int is
block {
const j : int = 3;
function add (const k : int) : int is i+j+k
} with add (42)