Files
2125_GCE/test.py
T

8 lines
100 B
Python
Raw Normal View History

2026-07-09 12:54:44 -04:00
def test():
x = 42
y = 58
return x + y
result = test()
print(f"Test result: {result}")