mirror of
https://github.com/micropython/micropython.git
synced 2025-07-21 21:11:12 +02:00
5 lines
75 B
Python
5 lines
75 B
Python
def foo(x: int, y: list) -> dict:
|
|
return {x: y}
|
|
|
|
print(foo(1, [2, 3]))
|