spacevim/bundle/nvim-treesitter-0.9.1/tests/indent/r/cond.R

13 lines
111 B
R
Raw Normal View History

2024-08-21 14:17:26 +08:00
x <- 10
if (x > 3) {
x <- 3
} else if (x < 3) {
x <- -3
} else {
if (x > 0) {
x <- 1
}
x <- 0
}