RosettaCodeData/Task/Accumulator-factory/AppleScript/accumulator-factory-2.applescript

21 lines
223 B
AppleScript
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
on run
set x to foo(1)
2017-09-23 10:01:46 +02:00
x's |λ|(5)
2016-12-05 22:15:40 +01:00
foo(3)
2017-09-23 10:01:46 +02:00
x's |λ|(2.3)
2016-12-05 22:15:40 +01:00
end run
-- foo :: Int -> Script
on foo(sum)
script
2017-09-23 10:01:46 +02:00
on |λ|(n)
2016-12-05 22:15:40 +01:00
set sum to sum + n
2017-09-23 10:01:46 +02:00
end |λ|
2016-12-05 22:15:40 +01:00
end script
end foo