tree-sitter-tiger/test/indent/functions.tig

15 lines
151 B
Plaintext
Raw Normal View History

2022-06-13 11:09:00 +02:00
primitive long_parameter_list(
a: int,
b: string,
c: type
)
function f() =
(
long_parameter_list(
1,
"2",
nil
)
)