mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-01 12:31:01 +01:00
26 lines
429 B
AppleScript
26 lines
429 B
AppleScript
|
-- This is a comment
|
||
|
|
||
|
property defaultClientName : "Mary Smith"
|
||
|
|
||
|
on greetClient(nameOfClient)
|
||
|
display dialog ("Hello " & nameOfClient & "!")
|
||
|
end greetClient
|
||
|
|
||
|
|
||
|
script testGreet
|
||
|
greetClient(defaultClientName)
|
||
|
end script
|
||
|
|
||
|
run testGreet
|
||
|
greetClient("Joe Jones")
|
||
|
|
||
|
set myList to {1, "what", 3}
|
||
|
set beginning of myList to 0
|
||
|
set end of myList to "four"
|
||
|
|
||
|
myList
|
||
|
|
||
|
tell application "TextEdit"
|
||
|
paragraph 1 of document 1
|
||
|
end tell
|