log
graph
tags
bookmarks
branches
changeset
browse
file
latest
diff
comparison
annotate
file log
raw
help
Mercurial
>
hg
>
pub
>
prymula
>
scripts
comparison bubblesort/test.py @ 0:
dcd610585610
Find changesets by keywords (author, files, the commit message), revision number or hash, or
revset expression
.
INIT
author
prymula <prymula76@outlook.com>
date
Thu, 21 Sep 2023 22:32:14 +0200
parents
children
comparison
equal
deleted
inserted
replaced
-1:000000000000
0:dcd610585610
1
#!/usr/bin/env python3
2
3
"""
4
for i int range(0,5):
5
print (i)
6
"""
7
8
def func(i):
9
if i == 0:
10
return
11
print(i)
12
func(i-1)
13
14
func(5)
15