xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
fun_annotations.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
def
foo
(
x
:
int
,
y
:
list
) ->
dict
:
2
return
{
x
:
y
}
3
4
print
(
foo
(
1
, [
2
,
3
]))
5