xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
fun1.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
# calling a function
2
3
def
f
():
4
print
(
1
)
5
f
()
6