mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-27 12:10:06 +08:00
18 lines
137 B
R
Vendored
18 lines
137 B
R
Vendored
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
|
|
}
|
|
}
|