Files
2018-11-19 15:15:54 +00:00

37 lines
438 B
Python

def f():
while 0:
pass
return 1
def g():
while 1:
pass
return unreachable
def h(x):
if x:
return x
else:
return None
def k(a, b):
for x in a or b:
pass
return 0
def l(a, b, c):
if a or b or c:
return a or b or c
else:
return None
def m(a, b, c):
if a and b and c:
return a and b and c
else:
return None