1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-30 15:10:04 +08:00
SpaceVim/bundle/nvim-treesitter/tests/indent/r/cond.R

13 lines
111 B
R
Raw Normal View History

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