mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-21 03:50:16 +00:00
14 lines
109 B
Python
14 lines
109 B
Python
a = 1
|
|
b = 2
|
|
|
|
print(a, b)
|
|
|
|
|
|
def f(a, b):
|
|
breakpoint()
|
|
b = a + b
|
|
print(a, b)
|
|
return b
|
|
|
|
f(1, 2)
|