nvim-treesitter/tests/indent/tiger/values-and-expressions.tig

31 lines
255 B
Text
Raw Normal View History

2022-06-14 17:30:49 +02:00
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