nvim-treesitter/lua/tests/indent/c/basic.c
2021-04-23 21:21:38 +02:00

11 lines
143 B
C

int foo(int x)
{
if (x > 10) {
return x;
} else {
while (x > 0) {
x--;
}
return 0;
}
}