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