property parent : class "NSObject"
on applicationWillFinishLaunching_(aNotification)
AppDelegate's doSomethingWith_andThis_("Hello", "World")
AppDelegate's doSomethingWithVaribale_andThisOtherVariable_AndAnotherVariable_("Hello", "World","!")
end applicationWillFinishLaunching_
on applicationShouldTerminate_(sender)
return current application's NSTerminateNow
end applicationShouldTerminate_
on doSomethingWith_andThis_(variable1, variable2)
display dialog variable1 & variable2
end doSomethingWith_andThis_
on doSomethingWithVaribale_andThisOtherVariable_AndAnotherVariable_(variable1, variable2,variable3)
display dialog variable1 & variable2 & variable3
end
end script