mirror of
https://github.com/github/codeql.git
synced 2025-12-25 13:16:33 +01:00
7 lines
119 B
Python
7 lines
119 B
Python
|
|
def just_three():
|
|
x = 3
|
|
[0 for y in range(3)]
|
|
return x # Will return always return 3.
|
|
|
|
print(just_three()) |