mirror of
https://github.com/sharkdp/bat.git
synced 2025-06-20 23:35:52 +01:00
add new syntax test files
This commit is contained in:
tests/syntax-tests
highlighted
ASP
AppleScript
Fish
Objective-C++
Objective-C
Regular Expression
Ruby On Rails
Tcl
Textile
source
ASP
AppleScript
Fish
Objective-C++
Objective-C
Regular Expression
Ruby On Rails
Tcl
Textile
25
tests/syntax-tests/source/AppleScript/test.applescript
Normal file
25
tests/syntax-tests/source/AppleScript/test.applescript
Normal 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
|
Reference in New Issue
Block a user