aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/r/cond.R
blob: 865192915765c7c6d2cefad4a539b34cf15b24bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
x <- 10

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