5 lines
73 B
Python
5 lines
73 B
Python
|
|
def recurse(counter):
|
||
|
|
print(counter)
|
||
|
|
counter += 1
|
||
|
|
recurse(counter)
|