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