add new syntax test files

This commit is contained in:
henil
2020-11-15 00:22:08 +05:30
committed by David Peter
parent a5a9ac83e5
commit 591eba66a3
18 changed files with 646 additions and 0 deletions

View File

@ -0,0 +1,25 @@
-- 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