loop_count-5-while_down_ne.py 83 B

1234567
  1. import bench
  2. def test(num):
  3. while num != 0:
  4. num -= 1
  5. bench.run(test)