-- integer (integer numbers)set 와 copy
set x to 5
-- real (real numbers)
set x to 3.57
-- characters (single characters)
set x to "f"
-- strings
set x to "The Hitch-hicker's Guide To The Galaxy"
-- lists (array)
set x to {"foo",2,3.57}
set 은 reference 를 생성하고 copy 는 값을 카피하는 것이다.
copy "Hello world" to x간단한 값에서는 차이가 거의 없지만
복잡한 오브젝트에서는 큰 차이가 난다.
레퍼런스 : Basic AppleScript information and syntax
No comments:
Post a Comment