index
:
nvim-treesitter
0.5-compat
feat/emmylua
feat/warn
fix/lua
main
master
[no description]
git mirrorbot
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
tests
/
indent
/
c
/
ternary.c
blob: 2e40b382e9e164fae64a389cc5180f84fe14797f (
plain
) (
blame
)
1
2
3
4
5
6
void
foo
(
int
x
)
{
int
y
=
(
x
>
10
)
?
10
:
(
x
<
-10
)
?
-10
:
x
;
}