xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
internal_bench
/
loop_count-5-while_down_ne.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
import
bench
2
3
4
def
test
(
num
):
5
while
num
!=
0
:
6
num
-=
1
7
8
9
bench
.
run
(
test
)
10