mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
11 lines
143 B
C
11 lines
143 B
C
int foo(int x)
|
|
{
|
|
if (x > 10) {
|
|
return x;
|
|
} else {
|
|
while (x > 0) {
|
|
x--;
|
|
}
|
|
return 0;
|
|
}
|
|
}
|