1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 13:00:05 +08:00
SpaceVim/bundle/nvim-treesitter-0.9.1/tests/indent/tiger/values-and-expressions.tig

31 lines
255 B
Plaintext
Raw Normal View History

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