Skip to content

Instantly share code, notes, and snippets.

@mnicovideo
Last active December 12, 2015 05:09
Show Gist options
  • Save mnicovideo/4720007 to your computer and use it in GitHub Desktop.
Save mnicovideo/4720007 to your computer and use it in GitHub Desktop.
AppleScriptでクロージャー ref: http://qiita.com/c9iim/items/8f56210ed289afb7b10f
(* 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
(* 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