Programming languages

AppleScript

A scripting language created by Apple Inc. that facilitates automated control over scriptable Mac applications. It's designed to operate within the Apple ecosystem, allowing for complex workflows and automation tasks.

Share this starting point code.study/applescript
Created by
Apple Inc.
First appeared
1993
Official resource
Visit the main website

Your first program

Hello, World!

AppleScript
tell application "Finder"
    display dialog "Hello, World!"
end tell