Files
cground/tests/closure.grnd
2026-03-18 15:21:58 +11:00

15 lines
241 B
Plaintext

set &x 5
fun !dingle -function -int &a
fun !capture -int -int &b
add $a $b &tmp
add $tmp $x &tmp
return $tmp
endfun
return $capture
endfun
set &x 10
call !dingle 3 &result
call !result 5 &y
println $y $x