mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
8 lines
124 B
Python
8 lines
124 B
Python
|
|
from clever_lazy_module_thing import range
|
|
|
|
#OK iteration over range
|
|
def OK4(n):
|
|
for i in range(n):
|
|
print("x")
|