运行 ❯
获取
你自己的
网站
×
更改方向
更改主题,深色/浅色
前往 Spaces
i <- 0 while (i < 6) { i <- i + 1 if (i == 3) { next } print(i) }
[1] 1
[1] 2
[1] 4
[1] 5
[1] 6