blob: d803af75b9177a2963dd7e837ad0cdf1bb703caf (
plain) (
blame)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
let
var a : int := 42
/* ^ @punctuation.delimiter */
/* ^ @operator */
in
(
/* <- @punctuation.bracket */
-1 | 2 & 3 + 4 * 5;
/* <- @operator */
/* ^ @operator */
/* ^ @operator */
/* ^ @operator */
/* ^ @operator */
/* ^ @punctuation.delimiter */
12 >= 27;
/* ^ @operator */
12 <= 27;
/* ^ @operator */
12 = 27;
/* ^ @operator */
12 <> 27;
/* ^ @operator */
12 < 27;
/* ^ @operator */
12 > 27;
/* ^ @operator */
record.field;
/* ^ @punctuation.delimiter */
func(a, b);
/* ^ @punctuation.bracket */
/* ^ @punctuation.bracket */
/* ^ @punctuation.delimiter */
record_type { };
/* ^ @punctuation.bracket */
/* ^ @punctuation.bracket */
array[42]
/* ^ @punctuation.bracket */
/* ^ @punctuation.bracket */
)
/* <- @punctuation.bracket */
end
/* vim: set ft=tiger: */
|