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