2019-09-21 14:59:48 -07:00
|
|
|
// Test a PascaLIGO function which takes another PascaLIGO function as an argument
|
|
|
|
|
2019-05-12 20:56:22 +00:00
|
|
|
function foobar (const i : int) : int is
|
|
|
|
function foo (const i : int) : int is
|
|
|
|
block { skip } with i ;
|
|
|
|
function bar (const f : int -> int) : int is
|
|
|
|
block { skip } with f ( i ) ;
|
|
|
|
block { skip } with bar (foo) ;
|