Run ❯
Get your
own
website
Result Size:
625 x 565
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
i <- 0 while (i < 6) { i <- i + 1 if (i == 3) { next } print(i) }
x
i
<-
0
while
(
i
<
6
) {
i
<-
i
+
1
if
(
i
==
3
) {
next
}
print
(
i
)
}
[1] 1
[1] 2
[1] 4
[1] 5
[1] 6