RosettaCodeData/Task/Closures-Value-capture/AppleScript/closures-value-capture-1.applescript

18 lines
252 B
AppleScript
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
on run
set fns to {}
repeat with i from 1 to 10
set end of fns to closure(i)
end repeat
2017-09-23 10:01:46 +02:00
|λ|() of item 3 of fns
2016-12-05 22:15:40 +01:00
end run
on closure(x)
script
2017-09-23 10:01:46 +02:00
on |λ|()
x * x
end |λ|
2016-12-05 22:15:40 +01:00
end script
end closure