diff --git a/benchmarks/loop_3.py b/benchmarks/loop_3.py new file mode 100644 index 00000000..24725f13 --- /dev/null +++ b/benchmarks/loop_3.py @@ -0,0 +1,5 @@ +for i in range(10000000): + x = i + 1 + y = x * 2 + z = y - 5 + a = x * y // z \ No newline at end of file