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,5 +1,8 @@
_private = "valid"
var123 = 456
CamelCase = True
snake_case = False
very_long_variable_name_123 = "test"
def calculate(a, b=10):
result = (a + b) * 2
if result > 100:
print("Large result:", result)
return result
# This is a comment
x = calculate(5, 15)