mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
230 B
Python
16 lines
230 B
Python
# original function # this is line 1 of the code.
|
|
def foo():
|
|
print 'f00'
|
|
def bar(num):
|
|
for _ in range(num):
|
|
print 'bar'
|
|
bar(7)
|
|
|
|
|
|
def bar(num):
|
|
for _ in range(num):
|
|
print 'bar'
|
|
|
|
|
|
bar(7)
|