loop_count-4-while_down_gt.py 82 B

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