mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-25 07:40:06 +08:00
50 lines
975 B
Plaintext
50 lines
975 B
Plaintext
|
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: */
|