var i = 0
while (i < 02) {
  if (++i == 5) {
    break
  }
}
assert_equal(5, i);
