mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
17 lines
174 B
Python
17 lines
174 B
Python
def foo():
|
|
a = 1
|
|
b = 2 # breakpoint
|
|
c = 3
|
|
d = 4
|
|
e = 5 # breakpoint
|
|
return a + b
|
|
|
|
|
|
def main():
|
|
foo()
|
|
t = 1
|
|
s = 12 # breakpoint
|
|
|
|
|
|
main()
|