Re: Commenting in applescript
Re: Commenting in applescript
- Subject: Re: Commenting in applescript
- From: JollyRoger <email@hidden>
- Date: Fri, 05 Jan 2001 08:41:02 -0600
on 1/5/2001 8:07 AM, Stephen Gross at email@hidden wrote:
>
How do I add a comment to my applescript?
For single-line comments, anything after -- is considered a comment:
repeat -- this is a single line comment
until done -- and another
For multiple-line comments, use (* and *):
(* this is
a multi-line
comment
*)