📜  在 applescript 中评论 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:16.297000             🧑  作者: Mango

代码示例1
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")