blob: ec09360aaeec420750154b978eb2542bef180258 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001# original function # this is line 1 of the code.
2def foo():
3 print 'f00'
4 def bar(num):
5 for _ in range(num):
6 print 'bar'
7
8 bar(7)
9
10<caret> <selection></selection>