mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-19 19:10:17 +00:00
20 lines
187 B
Python
20 lines
187 B
Python
# a = 1
|
|
# b = 2
|
|
|
|
# print(a, b)
|
|
|
|
|
|
# def f(a, b):
|
|
# b = a + b
|
|
# print(a, b)
|
|
# return b
|
|
|
|
# def g(a, b):
|
|
# breakpoint()
|
|
# c = f(a, b)
|
|
# return c
|
|
|
|
# g(1, 2)
|
|
# f(3, 4)
|
|
|