indention start

This commit is contained in:
bronku 2025-11-25 13:53:50 +01:00
parent 1c21aede4b
commit 5062a9b588
12 changed files with 268 additions and 48 deletions

View file

@ -1,3 +1,12 @@
x == y != z < > <= >=
a + b - c * d / e % f
( ) [ ] { } , : . ;
def outer():
def inner1():
if cond1:
action1()
if cond2:
action2()
def inner2():
for i in range(3):
if cond3:
action3()
action4()
return result