mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-02 11:36:54 -04:00
17 lines
137 B
R
17 lines
137 B
R
x <- 1
|
|
|
|
while (x < 10) {
|
|
x <- x + 1
|
|
break
|
|
}
|
|
|
|
for (i in 1:3) {
|
|
x <- x + 1
|
|
}
|
|
|
|
repeat {
|
|
x <- x + 1
|
|
if (x > 100) {
|
|
break
|
|
}
|
|
}
|