Files
2125_GCE/test.py
T
2026-07-09 12:54:44 -04:00

8 lines
100 B
Python
Executable File

def test():
x = 42
y = 58
return x + y
result = test()
print(f"Test result: {result}")