Sign in
fuchsia
/
third_party
/
github.com
/
python
/
mypy
/
fb622e88e71a8cbcabfbaea3685fbd301484baf1
/
.
/
test-data
/
samples
/
greet.py
blob: 47e7626410c3116538512a6c1829f436a4180012 [
file
]
import
typing
def
greet
(
name
:
str
)
->
None
:
print
(
'Hello'
,
name
)
greet
(
'Jack'
)
greet
(
'Jill'
)
greet
(
'Bob'
)