Last active
December 12, 2015 05:09
-
-
Save mnicovideo/4720007 to your computer and use it in GitHub Desktop.
AppleScriptでクロージャー ref: http://qiita.com/c9iim/items/8f56210ed289afb7b10f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* closure of applescript *) | |
on theClosure() | |
script outer | |
property x : 0 | |
script inner | |
set x to x + 1 | |
end script | |
end script | |
return inner of outer | |
end theClosure | |
set s to theClosure() | |
run s | |
run s | |
run s | |
run s | |
run s | |
-- result : 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(* closure of applescript *) | |
on theClosure() | |
script outer | |
property x : 0 | |
script inner | |
set x to x + 1 | |
end script | |
end script | |
return inner of outer | |
end theClosure | |
set s to theClosure() | |
run s | |
run s | |
run s | |
run s | |
run s | |
-- result : 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment