Comment In Applescript

[Solved] Comment In Applescript | Perl - Code Explorer | yomemimo.com
Question : comment in applescript

Answered by : william-sherwood

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")

Source : | Last Update : Tue, 05 May 20

Answers related to comment in applescript

Code Explorer Popular Question For Perl