1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-29 11:00:06 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/r/cond.R
2022-04-14 12:01:23 +08:00

13 lines
111 B
R

x <- 10
if (x > 3) {
x <- 3
} else if (x < 3) {
x <- -3
} else {
if (x > 0) {
x <- 1
}
x <- 0
}