12 lines
243 B
AppleScript
12 lines
243 B
AppleScript
--This is a single line comment
|
|
|
|
display dialog "ok" --it can go at the end of a line
|
|
|
|
# Hash style comments are also supported
|
|
|
|
(* This is a multi
|
|
line comment*)
|
|
|
|
(* This is a comment. --comments can be nested
|
|
(* Nested block comment *)
|
|
*)
|