mirror of
https://github.com/github/codeql.git
synced 2026-04-01 05:08:15 +02: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()) |