mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 11:30:18 +00:00
Update 95_pdb.py
This commit is contained in:
parent
d87c9ff850
commit
d38fd25459
@ -1,19 +1,19 @@
|
|||||||
a = 1
|
# a = 1
|
||||||
b = 2
|
# b = 2
|
||||||
|
|
||||||
print(a, b)
|
# print(a, b)
|
||||||
|
|
||||||
|
|
||||||
def f(a, b):
|
# def f(a, b):
|
||||||
b = a + b
|
# b = a + b
|
||||||
print(a, b)
|
# print(a, b)
|
||||||
return b
|
# return b
|
||||||
|
|
||||||
def g(a, b):
|
# def g(a, b):
|
||||||
breakpoint()
|
# breakpoint()
|
||||||
c = f(a, b)
|
# c = f(a, b)
|
||||||
return c
|
# return c
|
||||||
|
|
||||||
g(1, 2)
|
# g(1, 2)
|
||||||
f(3, 4)
|
# f(3, 4)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user