9 lines
97 B
AppleScript
9 lines
97 B
AppleScript
|
|
on run
|
||
|
|
f()
|
||
|
|
display dialog "This message will never be displayed."
|
||
|
|
end run
|
||
|
|
|
||
|
|
on f()
|
||
|
|
error
|
||
|
|
end f
|