mirror of
https://github.com/github/codeql.git
synced 2026-01-11 05:30:24 +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
|