1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<h2>Comments</h2>
<pre><code>-- Single line comment
#!/usr/bin/osascript
(* Here is
a block
comment *)</code></pre>
<h2>Strings</h2>
<pre><code>"foo \"bar\" baz"</code></pre>
<h2>Operators</h2>
<pre><code>a ≠ b
12 + 2 * 5
"DUMPtruck" is equal to "dumptruck"
"zebra" comes after "aardvark"
{ "this", "is", 2, "cool" } starts with "this"
{ "is", 2} is contained by { "this", "is", 2, "cool" }
set docRef to a reference to the first document
</code></pre>
<h2>Classes and units</h2>
<pre><code>tell application "Finder"
text 1 thru 5 of "Bring me the mouse."
set averageTemp to 63 as degrees Fahrenheit
set circleArea to (pi * 7 * 7) as square yards
</code></pre>
|