applescript how to comment code code example
Example: comment in applescript
AppleScript uses (* or -- for a comment
-- e.g:
(*
This program displays a greeting.
*)
on greet(myGreeting)
display dialog myGreeting & " world!"
end greet
-- Show the greeting
greet("Hello")