mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-30 15:10:04 +08:00
13 lines
111 B
R
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
|
||
|
}
|