Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
AppleScript
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
===Comment=== A [[Comment (computer programming)|comment]] can be formatted various ways. A line comment begins with <code>--</code> or alternatively in later versions (AppleScript 2.0, first released in [[Mac OS X Leopard]]) with {{code|#}}. The latter permits an AppleScript script to run as an executable if it begins with a [[shebang line]] <code>#!/usr/bin/osascript</code>. For example: <syntaxhighlight lang="AppleScript"> --This is a line comment # So is this! (in later versions) </syntaxhighlight> A block comment (can be multiple lines) is delimited by <code>(*</code> and <code>*)</code>. For example: <syntaxhighlight lang="AppleScript"> (* This is a multiple line comment *) </syntaxhighlight>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)