index
:
nvim-treesitter.git
master
Unnamed repository; edit this file 'description' to name the repository.
Mike Vink
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
indent
/
c
/
ternary.c
blob: 2e40b382e9e164fae64a389cc5180f84fe14797f (
plain
)
1
2
3
4
5
6
void
foo
(
int
x
)
{
int
y
= (
x
>
10
) ?
10
: (
x
< -
10
) ? -
10
:
x
;
}