mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
15 lines
121 B
C
15 lines
121 B
C
|
|
int x[] = {
|
||
|
|
1, 2, 3,
|
||
|
|
4, 5,
|
||
|
|
6
|
||
|
|
};
|
||
|
|
|
||
|
|
int y[][2] = {
|
||
|
|
{0, 1},
|
||
|
|
{1, 2},
|
||
|
|
{
|
||
|
|
2,
|
||
|
|
3
|
||
|
|
},
|
||
|
|
};
|