mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 11:50:09 -04:00
31 lines
255 B
Text
31 lines
255 B
Text
|
|
let
|
||
|
|
type array_of_int = array of int
|
||
|
|
|
||
|
|
type record = {
|
||
|
|
a: int,
|
||
|
|
b: string,
|
||
|
|
c: type
|
||
|
|
}
|
||
|
|
|
||
|
|
var a :=
|
||
|
|
"a string"
|
||
|
|
in
|
||
|
|
array[
|
||
|
|
12
|
||
|
|
]
|
||
|
|
;
|
||
|
|
|
||
|
|
array_of_int[
|
||
|
|
27
|
||
|
|
]
|
||
|
|
of
|
||
|
|
42
|
||
|
|
;
|
||
|
|
|
||
|
|
record {
|
||
|
|
a = 1,
|
||
|
|
b = "2",
|
||
|
|
c = nil
|
||
|
|
}
|
||
|
|
end
|