ligo/test/contracts/closure-2.ligo

6 lines
169 B
Plaintext
Raw Normal View History

2019-08-21 12:28:27 +04:00
function foobar(const i : int) : int is
const j : int = 3 ;
function toto(const k : int) : int is
block { skip } with i + j + k ;
block { skip } with toto(42)