mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 03:26:52 -04:00
12 lines
111 B
R
12 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
|
|
}
|