Get your own website Result Size: 625 x 565
x
 
i <- 1
while (i < 6) {
  print(i)
  i <- i + 1
  if (i == 4) {
    break
  }
}
[1] 1
[1] 2
[1] 3