#!/usr/bin/env python
def hello(name: str) -> str:
    if name:
        return f"hello, {name}"
    return "hello, world"
