8 lines
100 B
Python
8 lines
100 B
Python
|
|
def test():
|
||
|
|
x = 42
|
||
|
|
y = 58
|
||
|
|
return x + y
|
||
|
|
|
||
|
|
result = test()
|
||
|
|
print(f"Test result: {result}")
|