AppleScript名:リストの連結(addObject) |
use AppleScript version "2.4" use scripting additions use framework "Foundation" set anArray to current application’s NSMutableArray’s new() anArray’s addObject:{1, 2, 3} anArray’s addObject:{4, 5, 6} anArray as list –> {{1, 2, 3}, {4, 5, 6}} |
More from my site
(Visited 16 times, 1 visits today)