nvim-treesitter/tests/indent/julia/assignment.jl
Ronan Arraes Jardim Chagas d2fe87062d Add more tests for assignments
2023-10-29 01:37:31 +02:00

21 lines
265 B
Julia

my_variable =
1 + 2 - 3 *
4 / 5 %
6 + (
1 + 2 +
3
) +
7 + 8 +
9
function test()
my_variable =
1 + 2 - 3 *
4 / 5 %
6 + (
1 + 2 +
3
) +
7 + 8 +
9
end