mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
17 lines
231 B
Python
17 lines
231 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)
|