6 lines
188 B
AppleScript
6 lines
188 B
AppleScript
|
|
set any to {1, "foo", 2.57, missing value, {1, 2, 3}}
|
||
|
|
set beginning of any to false
|
||
|
|
set end of any to Wednesday
|
||
|
|
return any
|
||
|
|
--> {false, 1, "foo", 2.57, missing value, {1, 2, 3}, Wednesday}
|