possible direction of branch checks for name resolution.

This commit is contained in:
Dave Halter
2014-08-10 13:17:37 +02:00
parent 483f5c14ee
commit f1711f8f9c
7 changed files with 45 additions and 9 deletions

View File

@@ -23,18 +23,18 @@ a(0):.
# if/else/elif
# -----------------
if 1:
if (random.choice([0, 1])):
1
elif(3):
elif(random.choice([0, 1])):
a = 3
else:
a = ''
#? int() str()
a
def func():
if 1:
if random.choice([0, 1]):
1
elif(3):
elif(random.choice([0, 1])):
a = 3
else:
a = ''