ligo/test/contracts/set_arithmetic-1.ligo
2019-09-09 11:47:42 +02:00

10 lines
207 B
Plaintext

function iter_op (const s : set(int)) : int is
var r : int := 0 ;
function aggregate (const i : int) : unit is
begin
r := r + i ;
end with unit
begin
set_iter(s , aggregate) ;
end with r