fork download
  1. x<-1:10
  2. for(i in x){
  3. if(i==6){
  4. next
  5. }
  6. print(i)
  7. }
  8. x
Success #stdin #stdout 0.22s 38996KB
stdin
Standard input is empty
stdout
[1] 1
[1] 2
[1] 3
[1] 4
[1] 5
[1] 7
[1] 8
[1] 9
[1] 10
 [1]  1  2  3  4  5  6  7  8  9 10