11 lines
90 B
Python
11 lines
90 B
Python
|
|
test = 'nce'
|
|
|
|
def todo(x):
|
|
return 'done'
|
|
|
|
if test == 'nce':
|
|
print('yes!')
|
|
todo(test)
|
|
|