mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
9 lines
164 B
Python
9 lines
164 B
Python
|
|
CONSTANT = 12
|
|
|
|
def equals_to_twelve(x):
|
|
return x is CONSTANT
|
|
|
|
#This works in CPython, but might not for other implementations.
|
|
print (equals_to_twelve(5 + 7))
|