mirror of
https://github.com/github/codeql.git
synced 2025-12-25 05:06:34 +01:00
10 lines
129 B
Python
10 lines
129 B
Python
if True:
|
|
print "True is true!"
|
|
|
|
def limit(l):
|
|
if l < -100:
|
|
l = -100
|
|
if 1 > 100:
|
|
l = 100
|
|
return l
|