mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
10 lines
169 B
Python
10 lines
169 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)
|
|
|
|
<caret>
|