You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
109 B
17 lines
109 B
3 years ago
|
# tests for autoindent
|
||
|
if 1:
|
||
|
print(1)
|
||
|
|
||
|
|
||
|
|
||
|
if 0:
|
||
|
print(2)
|
||
|
else:
|
||
|
print(3)
|
||
|
|
||
|
if 0:
|
||
|
print(4)
|
||
|
else:
|
||
|
print(5)
|
||
|
|