mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-29 11:00:06 +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
|
|
}
|