mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
12 lines
181 B
C
12 lines
181 B
C
void foo(int x, int y)
|
|
{
|
|
if ((x*x - y*y > 0) ||
|
|
(x == 1 || y == 1) &&
|
|
(x != 2 && y != 2)
|
|
) {
|
|
return;
|
|
}
|
|
|
|
int z = (x + y) *
|
|
(x - y);
|
|
}
|